Skip to content

Commit 356df83

Browse files
tdayristdayris
andauthored
docs: Documentation update (#491)
* [fix] (template): Missing code in wrappers' doc. Error #187 * documentation update * fix wrong file edition Co-authored-by: tdayris <[email protected]>
1 parent 5bb3eab commit 356df83

File tree

9 files changed

+94
-33
lines changed

9 files changed

+94
-33
lines changed

bio/adapterremoval/meta.yaml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
name: "AdapterRemoval"
22
description: rapid adapter trimming, identification, and read merging.
3+
url: https://adapterremoval.readthedocs.io/en/latest/
34
authors:
45
- Filipe G. Vieira
56
input:
6-
- raw fastq file with R1 reads
7-
- raw fastq file with R2 reads (PE only)
7+
- sample:
8+
- raw fastq file with R1 reads
9+
- raw fastq file with R2 reads (PE only)
810
output:
9-
- trimmed fastq file with R1 reads
10-
- trimmed fastq file with R2 reads (PE only)
11-
- fastq file with singleton reads (PE only; PE reads for which the mate has been discarded)
12-
- fastq file with collapsed reads (PE only; overlapping mate-pairs which have been merged into a single read)
13-
- fastq file with collapsed truncated reads (PE only; collapsed reads that were quality trimmed)
14-
- fastq file with discarded reads (reads that did not pass filters)
15-
- settings and stats file
11+
- fq: path to single fastq file (SE only)
12+
- fq1: path to fastq R1 (PE only)
13+
- fq2: path to fastq R2 (PE only)
14+
- singleton: fastq file with singleton reads (PE only; PE reads for which the mate has been discarded)
15+
- collapsed: fastq file with collapsed reads (PE only; overlapping mate-pairs which have been merged into a single read)
16+
- collapsed_trunc: fastq file with collapsed truncated reads (PE only; collapsed reads that were quality trimmed)
17+
- discarded: fastq file with discarded reads (reads that did not pass filters)
18+
- settings: settings and stats file
1619
notes: |
17-
* For more information see, https://adapterremoval.readthedocs.io/en/latest/
20+
* All output files, except for 'settings', must be compressed the same way (gz, or bz2).

bio/arriba/meta.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
name: "arriba"
2+
url: https://github.com/suhrig/arriba
23
description: Detect gene fusions from chimeric STAR output
34
authors:
45
- Jan Forster
6+
input:
7+
- bam: Path to bam formatted alignment file from STAR
8+
- genome: Path to fasta formatted genome sequence
9+
- annotation: Path to GTF formatted genome annotation
10+
output:
11+
- fusions: Path to output fusion file
12+
params:
13+
- known_fusions: Path to known fusions file, see `official documentation on known fusions <https://arriba.readthedocs.io/en/latest/input-files/#known-fusions>`_ for more information.
14+
- blacklist: Path to blacklist file, see `official documentation on blacklist <https://arriba.readthedocs.io/en/latest/input-files/#blacklist>`_ for more information.
15+
- sv_file: Path to structural variations calls from WGS, see `official documentation on SV <https://arriba.readthedocs.io/en/latest/input-files/#structural-variant-calls-from-wgs>`_ for more information.
16+
- extra: Other `optional parameters <https://arriba.readthedocs.io/en/latest/command-line-options/>`_
17+
notes: |
18+
This tool/wrapper does not handle multi threading.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
name: art_profiler_illumina
2+
url: https://www.niehs.nih.gov/research/resources/software/biostatistics/art/index.cfm
23
description: Use the art profiler to create a base quality score profile for
34
Illumina read data from a fastq file.
45
authors:
56
- David Laehnemann
67
- Victoria Sack
8+
input:
9+
- Path to fastq-formatted input file (first place in the input list of files)
10+
output:
11+
- Path to txt formatted profile (first place in the output list of files)
12+
params:
13+
- Extra parameters (no keyword mapped parameter)
14+
notes: |
15+
Your input file must have one of the following extensions: fastq, fastq.gz, fq or fq.gz

bio/assembly-stats/meta.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: "assembly-stats"
22
description: Generates report of summary statistics for a genome assembly
3+
url: https://github.com/sanger-pathogens/assembly-stats
34
authors:
45
- Pathogen Informatics, Wellcome Sanger Institute (assembly-stats tool) - https://github.com/sanger-pathogens
56
- Max Cummins (Snakemake wrapper [unaffiliated with Wellcome Sanger Institute])
67
input:
7-
- Genomic assembly (fasta format)
8+
- assembly: Genomic assembly (fasta format)
89
output:
9-
- Assembly statistics (format of your choosing, default = tab-delimited)
10+
- assembly_stats: Assembly statistics (format of your choosing, default = tab-delimited)
11+
params:
12+
- extra: Optional parameters, see `assembly-stats official documentation <https://github.com/sanger-pathogens/assembly-stats#usage>`_
1013
notes: |
11-
* The `extra` param allows for additional program arguments.
12-
* For more inforamtion see https://github.com/sanger-pathogens/assembly-stats
14+
This tool/wrapper does not handle multi threading

bio/bamtools/filter/meta.yaml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
name: bamtools filter
2-
description: Filters BAM files. For more information about bamtools see `bamtools documentation <http://stab.st-andrews.ac.uk/wiki/index.php/Bamtools>`_ and `bamtools source code <https://github.com/pezmaster31/bamtools>`_.
2+
url: https://github.com/pezmaster31/bamtools
3+
description: Filters BAM files. For more information about bamtools see `bamtools documentation <http://stab.st-andrews.ac.uk/wiki/index.php/Bamtools>`_
34
authors:
45
- Antonie Vietor
56
input:
6-
- bam files (.bam)
7+
- bam files (.bam), must be in first position
78
output:
8-
- bam file (.bam)
9+
- bam file (.bam), must be in first position
10+
params:
11+
- tags: filtering tags
12+
- min_size: minimum insert size
13+
- max_size: maximum insert size
14+
- min_length: minimum read length
15+
- max_length: maximum read length
16+
- additional_params: Other filtering and optional parameters
17+
notes: |
18+
A complete usage documentation is available here: https://raw.githubusercontent.com/wiki/pezmaster31/bamtools/Tutorial_Toolkit_BamTools-1.0.pdf
19+
20+
This tool/wrapper does not handle multi threading

bio/bamtools/filter_json/meta.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
name: bamtools filter with json
2-
description: Filters BAM files with JSON-script for filtering parameters and rules. For more information about bamtools see `bamtools documentation <http://stab.st-andrews.ac.uk/wiki/index.php/Bamtools>`_ and `bamtools source code <https://github.com/pezmaster31/bamtools>`_.
2+
url: https://github.com/pezmaster31/bamtools
3+
description: Filters BAM files with JSON-script for filtering parameters and rules. For more information about bamtools see `bamtools documentation <http://stab.st-andrews.ac.uk/wiki/index.php/Bamtools>`_
34
authors:
45
- Antonie Vietor
56
input:
6-
- bam files (.bam)
7-
- json file (.json)
7+
- bam files (.bam), must be in first position
88
output:
9-
- bam file (.bam)
9+
- bam file (.bam), must be in first position
10+
params:
11+
- json: Path to filter file, json formatted.
12+
- region: see documentation for more information about multiple formats.
13+
notes: |
14+
A complete usage documentation is available here: https://raw.githubusercontent.com/wiki/pezmaster31/bamtools/Tutorial_Toolkit_BamTools-1.0.pdf
15+
16+
This tool/wrapper does not handle multi threading

bio/bamtools/split/meta.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
name: bamtools split
2+
url: https://github.com/pezmaster31/bamtools
23
description: Split bam file into sub files, default by reference
34
authors:
45
- Patrik Smeds
56
input:
6-
- bam file
7+
- bam file, this must be the only file in input.
78
output:
8-
- multiple bam file
9+
- multiple bam file multiple formats.
10+
params:
11+
- extra: Optional parameters
12+
notes: |
13+
A complete usage documentation is available here: https://raw.githubusercontent.com/wiki/pezmaster31/bamtools/Tutorial_Toolkit_BamTools-1.0.pdf
14+
15+
This tool/wrapper does not handle multi threading

bio/bamtools/stats/meta.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
name: bamtools stats
2+
url: https://github.com/pezmaster31/bamtools
23
description: Use bamtools to collect statistics from a BAM file. For more information about bamtools see `bamtools documentation <http://stab.st-andrews.ac.uk/wiki/index.php/Bamtools>`_ and `bamtools source code <https://github.com/pezmaster31/bamtools>`_.
34
authors:
45
- Antonie Vietor
56
input:
6-
- bam files (.bam)
7+
- bam files (.bam), must be in first position
78
output:
8-
- bamstats file (.bamstats)
9+
- bamstats file (.bamstats), must be in first position
10+
params:
11+
- Optional parameters as first and only value.
12+
notes: |
13+
A complete usage documentation is available here: https://raw.githubusercontent.com/wiki/pezmaster31/bamtools/Tutorial_Toolkit_BamTools-1.0.pdf
14+
This tool/wrapper does not handle multi threading

bio/bbtools/bbduk/meta.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
name: BBDuk
2+
url: https://jgi.doe.gov/data-and-tools/bbtools/bb-tools-user-guide/bbduk-guide/
23
description: |
34
Run BBDuk.
45
authors:
56
- Filipe G. Vieira
67
input:
7-
- raw fastq file with R1 reads
8-
- raw fastq file with R2 reads (optional)
8+
- sample: list of paths. Raw fastq file with R1 reads, raw fastq file with R2 reads (PE only, optional)
99
output:
10-
- trimmed fastq file with R1 reads
11-
- trimmed fastq file with R2 reads (optional)
12-
- fastq file with singleton reads (optional)
13-
- fastq file with discarded reads (optional)
14-
- stats file (optonal)
10+
- trimmed: trimmed fastq file with R1 reads, trimmed fastq file with R2 reads (PE only, optional)
11+
- singleton: fastq file with singleton reads (optional)
12+
- discarded: fastq file with discarded reads (optional)
13+
- stats: stats file (optonal)
14+
params:
15+
- extra: Optional parameters
16+
- adapters: Literal adapters sequences
1517
notes: |
1618
* The `java_opts` param allows for additional arguments to be passed to the java compiler, e.g. "-XX:ParallelGCThreads=10" (not for `-XmX` or `-Djava.io.tmpdir`, since they are handled automatically).
1719
* The `extra` param allows for additional program arguments.
18-
* For more information see, https://jgi.doe.gov/data-and-tools/bbtools/bb-tools-user-guide/bbduk-guide/

0 commit comments

Comments
 (0)