Skip to content

Commit c73d8d8

Browse files
authored
Merge pull request #89 from CEGRcode/ying-website
ScriptManager Homepage Merge major changes to homepage of docusaurus website to master so that they can be deployed. 1. add background image+user interface screen shot 2. change the logo and falvicon 3. change the nav bar github text link to icon link 4. add plotting sample 5. add icons and user interface screenshot to each tool 6. add tool index description and update Tool name links. NOTE: I didn't delete any original code. I just commented them
2 parents f1957ab + b9219c0 commit c73d8d8

File tree

135 files changed

+7725
-211
lines changed

Some content is hidden

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

135 files changed

+7725
-211
lines changed

docusaurus/docs/bam-format-converter/bam-to-bed.md

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ title: BAM to BED
44
sidebar_label: bam-to-bed
55
---
66

7+
<!-- <img src={image} alt="" style={{width:70+'%'}}/> -->
8+
9+
![bam-to-bed](/../static/icons/bam-format-converter/BAM-FormatConverter:BAMtoBED.svg)
710
Convert BAM file to BED file
811

12+
<img src={require('/../static/md-img/BAMFormatConverter/BAM-FormatConverter_BAMtoBED.png').default} style={{width:70+'%'}}/>
13+
914
Usage:
15+
1016
```bash
1117
java -jar ScriptManager.jar bam-format-converter bam-to-bed [-1 | -2 | -a | -m | -f]
1218
[-hpsV] [-n=<MIN_INSERT>] [-o=<output>] [-x=<MAX_INSERT>] <bamFile>
@@ -18,26 +24,27 @@ This tool takes a single BAM file for input. As with other tools, this tool requ
1824

1925
### Output Options
2026

21-
| Option | Description |
22-
| ------ | ----------- |
27+
| Option | Description |
28+
| ----------------------- | ---------------------------------------------------------------------- |
2329
| `-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) |
30+
| `-s, --stdout` | stream output file to STDOUT (cannot be used with `-o` flag) |
2531

2632
### Filter Options
33+
2734
These filter options are shared across all the BAM Format Converter tools.
2835

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 |
36+
| Option | Description |
37+
| ------------------------------- | ----------------------------------------------- |
38+
| `-p, --mate-pair` | require proper mate pair (default not required) |
39+
| `-n, --min-insert=<MIN_INSERT>` | filter by min insert size in bp |
40+
| `-x, --max-insert=<MAX_INSERT>` | filter by max insert size in bp |
3441

3542
### Read Options
3643

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) |
44+
| Option | Description |
45+
| ----------------- | ----------------------------- |
46+
| `-1, --read1` | output read 1 (default) |
47+
| `-2, --read2` | output read 2 |
48+
| `-a, --all-reads` | output combined |
49+
| `-m, --midpoint` | output midpoint (require PE) |
50+
| `-f, --fragment` | output fragment (requires PE) |

docusaurus/docs/bam-format-converter/bam-to-bedgraph.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ id: bam-to-bedgraph
33
title: BAM to bedGraph
44
sidebar_label: bam-to-bedgraph
55
---
6-
6+
![bam-to-bedgraph](/../static/icons/bam-format-converter/BAM-format-converter:BAMtobedgraph.svg)
77
Convert BAM file to bedGraph file
88

9+
<img src={require('/../static/md-img/BAMFormatConverter/BAM-format-converter:BAMtobedgraph.png').default} style={{width:70+'%'}}/>
10+
911
Usage:
1012
```bash
1113
java -jar ScriptManager.jar bam-format-converter bam-to-bedgraph [-1 | -2 | -a | -m]

docusaurus/docs/bam-format-converter/bam-to-gff.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ id: bam-to-gff
33
title: BAM to GFF
44
sidebar_label: bam-to-gff
55
---
6-
6+
![bam-to-gff](/../static/icons/bam-format-converter/BAM-Format-Converter:BAMtoGFF.svg)
77
Convert BAM file to GFF file
88

9+
<img src={require('/../static/md-img/BAMFormatConverter/BAM-Format-Converter_BAMtoGFF.png').default} style={{width:70+'%'}}/>
10+
911
Usage:
1012
```bash
1113
java -jar ScriptManager.jar bam-format-converter bam-to-gff [-1 | -2 | -a | -m | -f]

docusaurus/docs/bam-format-converter/bam-to-scidx.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ id: bam-to-scidx
33
title: BAM to scIDX
44
sidebar_label: bam-to-scidx
55
---
6-
6+
![bam-to-scidx](/../static/icons/bam-format-converter/BAM-format-converter:BAMtoscIDX.svg)
77
Convert BAM file to scIDX file
88

9+
<img src={require('/../static/md-img/BAMFormatConverter/BAM-format-converter:BAMtobedgraph.png').default} style={{width:70+'%'}}/>
10+
911
Usage:
1012
```bash
1113
java -jar ScriptManager.jar bam-format-converter bam-to-scidx [-1 | -2 | -a | -m]

docusaurus/docs/bam-manipulation/bam-indexer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ id: bam-indexer
33
title: BAM Indexer
44
sidebar_label: BAM Indexer
55
---
6-
6+
![bam-indexer](/../static/icons/bam-manipulation/BamManipulation:BAMIndexer.svg)
77

88
For most tools using BAM inputs (both within and without ScriptManager), a BAM index file (`.bai`) file is required so that the tool can efficiently query the file for alignment records. _Read more in the [Picard documentation][picard-index]_.
99

1010
ScriptManager's [TagPileup][tag-pileup], [Merge BAM replicates][merge-bam], [BAM Correlation][bam-correlation], and BAM Format Converter tools ([bam-to-bed][bam-to-bed], [bam-to-gff][bam-to-gff], [bam-to-bedgraph][bam-to-bedgraph], and [bam-to-scidx][bam-to-scidx]) are some example tools that require a `.bai` file.
1111

12-
![BAIIndexerWindow](/../static/md-img/BAIIndexerWindow.png)
12+
![BAIIndexerWindow](/../static/md-img/BAMManipulation/BAIIndexerWindow.png)
1313

1414
After clicking "Index", ScriptManager will index all of the loaded index files and save them to the "Output Directory" location with the `.bai` extension. Output files follow convention in naming the `.bai` file. If you are indexing the file `sample123.bam`, then the index file will be called `sample123.bam.bai`.
1515

docusaurus/docs/bam-manipulation/filter-pip-seq.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ title: Filter PIPseq
44
sidebar_label: filter-pip-seq
55
---
66

7+
![filter-pip-seq](/../static/icons/bam-manipulation/FilterPIP-seq_square.svg)
8+
9+
710
Usage:
811
```bash
912
java -jar ScriptManager.jar bam-manipulation filter-pip-seq [-hV] [-f=<filterString>]
@@ -14,6 +17,7 @@ Description:
1417

1518
Filter BAM file by -1 nucleotide. Requires genome FASTA file. Note this program does not index the resulting BAM file and user must use appropriate samtools command to generate BAI.
1619

20+
<img src={require('/../static/md-img/BAMManipulation/FilterPIPseq.png').default} style={{width:70+'%'}}/>
1721

1822
### Output Options
1923

docusaurus/docs/bam-manipulation/merge-bam.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ title: Merge BAM
44
sidebar_label: merge-bam
55
---
66

7+
![merge-bam](/../static/icons/bam-manipulation/BAMReplicateMerge_square.svg)
8+
79
CommandLine tools already exist for this function. This tool only exists as a GUI wrapper in ScriptManager.
810

911
Please see the [Samtools merge tool][samtools-merge] or the [Picard MergeBamAlignment tool][picard-merge].
1012

13+
<img src={require('/../static/md-img/BAMManipulation/MergeBAM.png').default} style={{width:70+'%'}}/>
14+
1115
[samtools-merge]:http://www.htslib.org/doc/samtools-merge.html
1216
[picard-merge]:https://broadinstitute.github.io/picard/command-line-overview.html#MergeBamAlignment

docusaurus/docs/bam-manipulation/remove-duplicates.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ title: Remove Duplicates
44
sidebar_label: remove-duplicates
55
---
66

7+
![remove-duplicates](/../static/icons/bam-manipulation/MarkDuplicates_square.svg)
8+
79
CommandLine tools already exist for this function. This tool only exists as a GUI wrapper in ScriptManager.
810

911
Please see the [Samtools markdup tool][samtools-markdup] or the [Picard MarkDuplicates tool][picard-markdup].
1012

13+
<img src={require('/../static/md-img/BAMManipulation/BamManipulation:remove-duplicaites.png').default} style={{width:70+'%'}}/>
14+
1115
[samtools-markdup]:http://www.htslib.org/doc/samtools-markdup.html
1216
[picard-markdup]:https://broadinstitute.github.io/picard/command-line-overview.html#MarkDuplicates

docusaurus/docs/bam-manipulation/sort-bam.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ id: sort-bam
33
title: Sort BAM
44
sidebar_label: sort-bam
55
---
6+
![sort-bam](/../static/icons/bam-manipulation/BamManipulation:SortBAM.svg)
7+
8+
9+
![sort-bam](/../static/md-img/BAMManipulation/BamManipulation_SortBAM.png)
610

711
CommandLine tools already exist for this function. This tool only exists as a GUI wrapper in ScriptManager.
812

docusaurus/docs/bam-statistics/bam-correlation.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ title: BAM Correlation
44
sidebar_label: bam-correlation
55
---
66

7+
![bam-correlation](/../static/icons/BAMStatistics/BAMCorrelation_square.svg)
78

89
_Output BAM Header including alignment statistics and parameters given any indexed (BAI) BAM File._
910

11+
<img src={require('/../static/md-img/BAMStatistics/BAMCorrelation.png').default} style={{width:70+'%'}}/>
12+
1013
## Command Line (bam-correlation)
1114

1215
Compare a list of BAM files to get a matrix of correlations between them. Outputs both a text file of matrix correlation scores and a heatmap PNG.

0 commit comments

Comments
 (0)