-
Notifications
You must be signed in to change notification settings - Fork 741
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update modules required for rnaseq pipeline (#449)
* Update HISAT2 build module * Bump preseq version * Fix tests * Add meta.yml for preseq to fix linting * Auto-detect --genomeSAindexNbases for smaller genomes * Add placeholder to use human data for the tests * Add CSI output option to samtools/index * Fix samtools/index tests
- Loading branch information
Showing
10 changed files
with
132 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: preseq_lcextrap | ||
description: Software for predicting library complexity and genome coverage in high-throughput sequencing | ||
keywords: | ||
- preseq | ||
- library | ||
- complexity | ||
tools: | ||
- preseq: | ||
description: Software for predicting library complexity and genome coverage in high-throughput sequencing | ||
homepage: http://smithlabresearch.org/software/preseq/ | ||
documentation: None | ||
tool_dev_url: None | ||
doi: "" | ||
licence: ['GPL'] | ||
|
||
input: | ||
- meta: | ||
type: map | ||
description: | | ||
Groovy Map containing sample information | ||
e.g. [ id:'test', single_end:false ] | ||
- bam: | ||
type: file | ||
description: BAM/CRAM/SAM file | ||
pattern: "*.{bam,cram,sam}" | ||
|
||
output: | ||
- meta: | ||
type: map | ||
description: | | ||
Groovy Map containing sample information | ||
e.g. [ id:'test', single_end:false ] | ||
- version: | ||
type: file | ||
description: File containing software version | ||
pattern: "*.{version.txt}" | ||
- ccurve: | ||
type: file | ||
description: File containing output of Preseq lcextrap | ||
pattern: "*.{ccurve.txt}" | ||
- log: | ||
type: file | ||
description: Log file containing stderr produced by Preseq | ||
pattern: "*.{log}" | ||
|
||
authors: | ||
- "@drpatelh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
- name: samtools index | ||
command: nextflow run tests/software/samtools/index -entry test_samtools_index -c tests/config/nextflow.config | ||
- name: samtools index bai | ||
command: nextflow run tests/software/samtools/index -entry test_samtools_index_bai -c tests/config/nextflow.config | ||
tags: | ||
- samtools | ||
- samtools/index | ||
files: | ||
- path: output/samtools/test_paired_end.sorted.bam.bai | ||
md5sum: 704c10dd1326482448ca3073fdebc2f4 | ||
|
||
- name: samtools index csi | ||
command: nextflow run tests/software/samtools/index -entry test_samtools_index_csi -c tests/config/nextflow.config | ||
tags: | ||
- samtools | ||
- samtools/index | ||
files: | ||
- path: output/samtools/test_paired_end.sorted.bam.csi | ||
md5sum: 3dd9e3ed959fca075b88bb8dc3cf7dbd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters