Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
682576d
added picard tools
Oct 1, 2025
7b44c68
linting
Oct 2, 2025
9fa9923
nf-tests
agrima2010 Oct 2, 2025
582938f
nf tests
agrima2010 Oct 2, 2025
4576ce3
minor changes
agrima2010 Oct 2, 2025
3218dc2
minor changes
agrima2010 Oct 2, 2025
59e6b2b
minor changes
agrima2010 Oct 2, 2025
01fd46a
snapshots updated
agrima2010 Oct 2, 2025
f03a1da
updated ss
agrima2010 Oct 2, 2025
c3d3498
bwamem2 not compatible with long reads Promethion
agrima2010 Oct 2, 2025
8cdf2fd
ss
agrima2010 Oct 2, 2025
d765d1d
ss updated
agrima2010 Oct 7, 2025
884cb2a
ss
agrima2010 Oct 7, 2025
d0141fb
ss
agrima2010 Oct 7, 2025
6b8c76e
.nftignore
agrima2010 Oct 7, 2025
0cfcb83
ss
agrima2010 Oct 7, 2025
db7395a
Update tests/.nftignore
agrima2010 Oct 7, 2025
7135a9d
Update tests/.nftignore
agrima2010 Oct 7, 2025
5d129cf
Test.config updates
agrima2010 Oct 7, 2025
4117e63
Merge branch 'picard_tools_dev' of https://github.com/agrima2010/seqi…
agrima2010 Oct 7, 2025
bd65cdd
Merge branch 'dev' into picard_tools_dev
agrima2010 Oct 25, 2025
e279f0d
Update timestamp in PromethION test snapshot
agrima2010 Oct 25, 2025
1bc1bc2
Update MiSeq.main.nf.test.snap
agrima2010 Oct 25, 2025
4f63066
ss updated
Oct 25, 2025
aa25759
Updated modules.json
Oct 25, 2025
0835f22
updated
Oct 25, 2025
5db6843
ss updated
Oct 27, 2025
08b7aea
Update conf/modules.config
agrima2010 Oct 27, 2025
44c75f6
Update conf/modules.config
agrima2010 Oct 27, 2025
da32a43
Update conf/modules.config
agrima2010 Oct 27, 2025
10ebebf
Update workflows/seqinspector.nf
agrima2010 Oct 27, 2025
e6fa02f
Update workflows/seqinspector.nf
agrima2010 Oct 27, 2025
89376b5
Update workflows/seqinspector.nf
agrima2010 Oct 27, 2025
403752d
Update workflows/seqinspector.nf
agrima2010 Oct 27, 2025
37d553f
Update workflows/seqinspector.nf
agrima2010 Oct 27, 2025
6c1d138
updated ss
Oct 28, 2025
e4948a0
ss updated
Oct 28, 2025
a91e9bd
update snapshots
maxulysse Nov 6, 2025
8d8badc
forgot file
maxulysse Nov 6, 2025
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 .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ lint:
- .github/CONTRIBUTING.md
files_exist:
- .github/workflows/ci.yml
- tests/default.nf.test
nextflow_config:
- config_defaults:
- params.fastq_screen_references
Expand Down
23 changes: 23 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,29 @@ process {
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}
withName: 'PICARD_COLLECTMULTIPLEMETRICS' {
publishDir = [
path: { "${params.outdir}/picard_collectmultiplemetrics" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: 'SAMTOOLS_FAIDX' {
publishDir = [
path: { "${params.outdir}/samtools_faidx" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: 'SAMTOOLS_INDEX' {
publishDir = [
path: { "${params.outdir}/samtools_index" },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest publishing these files in the same folder as your bam/cram files.

mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: 'MULTIQC_GLOBAL' {
ext.args = { params.multiqc_title ? "--title \"$params.multiqc_title\"" : '' }
Expand Down
15 changes: 15 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,21 @@
"git_sha": "7b50cb7be890e4b28cffb82e438cc6a8d7805d3f",
"installed_by": ["modules"]
},
"picard/collectmultiplemetrics": {
"branch": "master",
"git_sha": "df124e87c74d8b40285199f8cc20151f5aa57255",
"installed_by": ["modules"]
},
"samtools/faidx": {
"branch": "master",
"git_sha": "c8be52dba1166c678e74cda9c3a3c221635c8bb1",
"installed_by": ["modules"]
},
"samtools/index": {
"branch": "master",
"git_sha": "c8be52dba1166c678e74cda9c3a3c221635c8bb1",
"installed_by": ["modules"]
},
"seqfu/stats": {
"branch": "master",
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
Expand Down
18 changes: 11 additions & 7 deletions modules/nf-core/bowtie2/build/meta.yml

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

2 changes: 1 addition & 1 deletion modules/nf-core/bwamem2/mem/main.nf

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

23 changes: 14 additions & 9 deletions modules/nf-core/fastqc/meta.yml

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

35 changes: 19 additions & 16 deletions modules/nf-core/fastqscreen/buildfromindex/meta.yml

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

52 changes: 30 additions & 22 deletions modules/nf-core/fastqscreen/fastqscreen/meta.yml

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

114 changes: 64 additions & 50 deletions modules/nf-core/multiqc/meta.yml

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

Loading