Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ceadce6
include seqkit module
atrigila Aug 28, 2024
0193e7a
include blat module
atrigila Aug 28, 2024
f054b6a
include gawk module
atrigila Aug 28, 2024
b3e0266
include seqkit module
atrigila Aug 28, 2024
893c419
add modules to json
atrigila Aug 28, 2024
3cd4553
add configuration for nf-core modules
atrigila Aug 28, 2024
9c6407b
move contaminant filter to own directory
atrigila Aug 28, 2024
165f026
add nf-test and dump channels
atrigila Aug 28, 2024
3c9bfbe
remove dumps and improve syntax
atrigila Aug 29, 2024
d7afdde
update test and snapshot
atrigila Aug 29, 2024
5d616e2
patch seqkit grep to emit uncompressed fasta
atrigila Aug 29, 2024
d3c646a
do not publish intermediate files
atrigila Aug 29, 2024
47698fd
Merge remote-tracking branch 'origin/dev' into nf_core_blat
atrigila Aug 29, 2024
be90229
update changelog
atrigila Aug 29, 2024
fb348da
update test and snapshot
atrigila Aug 29, 2024
947df1e
remove unpublished file
atrigila Aug 29, 2024
406ce2e
make indices value channels
atrigila Aug 29, 2024
70d093c
update tests and snapshots
atrigila Aug 29, 2024
262c2c0
Merge remote-tracking branch 'origin/dev' into nf_core_blat
atrigila Sep 3, 2024
04f52d1
update cdna step
atrigila Sep 3, 2024
51441a4
add metamap to cdna step
atrigila Sep 3, 2024
4f29562
remove one contaminant filter subworflow
atrigila Sep 3, 2024
3878286
add meta to channels
atrigila Sep 4, 2024
856be8e
replace for nf-core modules
atrigila Sep 4, 2024
26bbc0f
remove unused subworkflow and rename used to main
atrigila Sep 4, 2024
496779c
emit versions and update test
atrigila Sep 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [[#388]](https://github.com/nf-core/smrnaseq/pull/388) - Fix [igenomes fix](https://github.com/nf-core/smrnaseq/issues/360) - Fix workflow scripts so that they can use igenome parameters.
- [[#391]](https://github.com/nf-core/smrnaseq/pull/391) - Fix [error because of large chromosomes](https://github.com/nf-core/smrnaseq/issues/132) - Change `.bai` index for `.csi` index in `samtools_index` to fix .
- [[#392]](https://github.com/nf-core/smrnaseq/pull/392) - Update [Reduce tests](https://github.com/nf-core/smrnaseq/issues/389) - Combine and optimize tests, and reduce samplesheets sizes.
- [[#397]](https://github.com/nf-core/smrnaseq/pull/397) - Fix [contaminant filter failure because of the Docker image for BLAT](https://github.com/nf-core/smrnaseq/issues/354) - Improvements to contaminant filter subworkflow and replacement for nf-core modules.
- [[#398]](https://github.com/nf-core/smrnaseq/pull/398) - Update [Input channels](https://github.com/nf-core/smrnaseq/issues/390) - Updated channel and params handling through workflows.

## v2.3.1 - 2024-04-18 - Gray Zinc Dalmation Patch
Expand Down
18 changes: 18 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,24 @@ process {
]
}

withName: 'NFCORE_SMRNASEQ:CONTAMINANT_FILTER:BLAT.*' {
ext.args = '-out=blast8'
ext.prefix = {"${meta.id}_${meta2.id}"}
tag = {"${meta.id} ${meta2.id}"}
publishDir = [ enabled: false ]
}

withName: 'NFCORE_SMRNASEQ:CONTAMINANT_FILTER:GAWK.*' {
ext.prefix = {"significant_hits_${meta.id}"}
publishDir = [ enabled: false ]
}

withName: 'NFCORE_SMRNASEQ:CONTAMINANT_FILTER:SEQKIT_GREP.*' {
ext.prefix = {"filtered_${meta.id}"}
ext.args = '-v'
publishDir = [ enabled: false ]
}

//
// MIRNA_QUANT
//
Expand Down
16 changes: 16 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
"https://github.com/nf-core/modules.git": {
"modules": {
"nf-core": {
"blat": {
"branch": "master",
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
"installed_by": ["modules"]
},
"cat/cat": {
"branch": "master",
"git_sha": "5bb8ca085e17549e185e1823495ab8d20727a805",
Expand All @@ -25,6 +30,11 @@
"git_sha": "46eca555142d6e597729fcb682adcc791796f514",
"installed_by": ["fastq_fastqc_umitools_fastp"]
},
"gawk": {
"branch": "master",
"git_sha": "cf3ed075695639b0a0924eb0901146df1996dc08",
"installed_by": ["modules"]
},
"multiqc": {
"branch": "master",
"git_sha": "b80f5fd12ff7c43938f424dd76392a2704fa2396",
Expand Down Expand Up @@ -55,6 +65,12 @@
"git_sha": "1fe379cf6e6c1e6fa5e32bcbeefea0f1e874dac6",
"installed_by": ["bam_stats_samtools", "modules"]
},
"seqkit/grep": {
"branch": "master",
"git_sha": "03fbf6c89e551bd8d77f3b751fb5c955f75b34c5",
"installed_by": ["modules"],
"patch": "modules/nf-core/seqkit/grep/seqkit-grep.diff"
},
"umicollapse": {
"branch": "master",
"git_sha": "18e452a645bd56d1a539f53c7656e3d2915246f7",
Expand Down
7 changes: 7 additions & 0 deletions modules/nf-core/blat/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 62 additions & 0 deletions modules/nf-core/blat/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions modules/nf-core/blat/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions modules/nf-core/gawk/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 55 additions & 0 deletions modules/nf-core/gawk/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 50 additions & 0 deletions modules/nf-core/gawk/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 56 additions & 0 deletions modules/nf-core/gawk/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading