Skip to content

Commit 1559505

Browse files
authored
Merge branch 'master' into dev
2 parents 5056b0d + f86daa4 commit 1559505

94 files changed

Lines changed: 13901 additions & 80 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33

44
Scripts are generically categorized within semi-descriptive tabs and are designed to be run in parallel with each other and themselves.
55

6+
7+
### Tutorial to using basic plotting capabilities of ScriptManager
8+
Open **ScriptManager-Tutorial.docx** available in root directory
9+
610
## Build Instructions
711
(after cloning this repo):
812
```

ScriptManager-Tutorial.docx

3.16 MB
Binary file not shown.

docusaurus/.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

docusaurus/README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Website
2+
3+
This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator.
4+
5+
### Installation
6+
7+
```
8+
$ yarn
9+
```
10+
11+
### Local Development
12+
13+
```
14+
$ yarn start
15+
```
16+
17+
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
18+
19+
### Build
20+
21+
```
22+
$ yarn build
23+
```
24+
25+
This command generates static content into the `build` directory and can be served using any static contents hosting service.
26+
27+
### Deployment
28+
29+
```
30+
$ GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
31+
```
32+
33+
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

docusaurus/babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3+
};

docusaurus/blog/2019-05-28-hola.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
slug: hola
3+
title: Hola
4+
author: Gao Wei
5+
author_title: Docusaurus Core Team
6+
author_url: https://github.com/wgao19
7+
author_image_url: https://avatars1.githubusercontent.com/u/2055384?v=4
8+
tags: [hola, docusaurus]
9+
---
10+
11+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
slug: hello-world
3+
title: Hello
4+
author: Endilie Yacop Sucipto
5+
author_title: Maintainer of Docusaurus
6+
author_url: https://github.com/endiliey
7+
author_image_url: https://avatars1.githubusercontent.com/u/17883920?s=460&v=4
8+
tags: [hello, docusaurus]
9+
---
10+
11+
Welcome to this blog. This blog is created with [**Docusaurus 2 alpha**](https://v2.docusaurus.io/).
12+
13+
<!--truncate-->
14+
15+
This is a test post.
16+
17+
A whole bunch of other information.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
slug: welcome
3+
title: Welcome
4+
author: Yangshun Tay
5+
author_title: Front End Engineer @ Facebook
6+
author_url: https://github.com/yangshun
7+
author_image_url: https://avatars0.githubusercontent.com/u/1315101?s=400&v=4
8+
tags: [facebook, hello, docusaurus]
9+
---
10+
11+
Blog features are powered by the blog plugin. Simply add files to the `blog` directory. It supports tags as well!
12+
13+
Delete the whole directory if you don't want the blog features. As simple as that!
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: bam-to-bed
3+
title: BAM to BED
4+
sidebar_label: bam-to-bed
5+
---
6+
7+
Convert BAM file to BED file
8+
9+
Usage:
10+
```bash
11+
java -jar ScriptManager.jar bam-format-converter bam-to-bed [-1 | -2 | -a | -m | -f]
12+
[-hpsV] [-n=<MIN_INSERT>] [-o=<output>] [-x=<MAX_INSERT>] <bamFile>
13+
```
14+
15+
### Positional Input
16+
17+
This tool takes a single BAM file for input. As with other tools, this tool requires the BAM file be indexed.
18+
19+
### Output Options
20+
21+
| Option | Description |
22+
| ------ | ----------- |
23+
| `-o, --output=<output>` | specify output directory (name will be same as original with .bed ext) |
24+
| `-s, --stdout` | stream output file to STDOUT (cannot be used with `-o` flag) |
25+
26+
### Filter Options
27+
These filter options are shared across all the BAM Format Converter tools.
28+
29+
| Option | Description |
30+
| ------ | ----------- |
31+
| `-p, --mate-pair` | require proper mate pair (default not required) |
32+
| `-n, --min-insert=<MIN_INSERT>` | filter by min insert size in bp |
33+
| `-x, --max-insert=<MAX_INSERT>` | filter by max insert size in bp |
34+
35+
### Read Options
36+
37+
| Option | Description |
38+
| ------ | ----------- |
39+
| `-1, --read1` | output read 1 (default) |
40+
| `-2, --read2` | output read 2 |
41+
| `-a, --all-reads` | output combined |
42+
| `-m, --midpoint` | output midpoint (require PE) |
43+
| `-f, --fragment` | output fragment (requires PE) |
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
id: bam-to-bedgraph
3+
title: BAM to bedGraph
4+
sidebar_label: bam-to-bedgraph
5+
---
6+
7+
Convert BAM file to bedGraph file
8+
9+
Usage:
10+
```bash
11+
java -jar ScriptManager.jar bam-format-converter bam-to-bedgraph [-1 | -2 | -a | -m]
12+
[-hpV] [-n=<MIN_INSERT>] [-o=<outputBasename>] [-x=<MAX_INSERT>]
13+
<bamFile>
14+
```
15+
16+
### Positional Input
17+
18+
This tool takes a single BAM file for input. As with other tools, this tool requires the BAM file be indexed.
19+
20+
### Output Options
21+
22+
| Option | Description |
23+
| ------ | ----------- |
24+
| `-o, --output=<outputBasename>` | specify output directory (name will be same as original with `_<strand>.bedgraph` ext) |
25+
| `-s, --stdout` | stream output file to STDOUT (cannot be used with `-o` flag) |
26+
27+
### Filter Options
28+
These filter options are shared across all the BAM Format Converter tools.
29+
30+
| Option | Description |
31+
| ------ | ----------- |
32+
| `-p, --mate-pair` | require proper mate pair (default not required) |
33+
| `-n, --min-insert=<MIN_INSERT>` | filter by min insert size in bp |
34+
| `-x, --max-insert=<MAX_INSERT>` | filter by max insert size in bp |
35+
36+
### Read Options
37+
38+
| Option | Description |
39+
| ------ | ----------- |
40+
| `-1, --read1` | output read 1 (default) |
41+
| `-2, --read2` | output read 2 |
42+
| `-a, --all-reads` | output combined |
43+
| `-m, --midpoint` | output midpoint (require PE) |

0 commit comments

Comments
 (0)