Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
749ecc5
Add basic snapshot
jfy133 Mar 1, 2026
9feafd9
Clean up default test structure
jfy133 Mar 1, 2026
1e716c9
Add first pass snapshot
jfy133 Mar 1, 2026
245f98d
[automated] Fix code linting
nf-core-bot Mar 1, 2026
7c2abad
Update snapshot
jfy133 Mar 1, 2026
3c30465
Merge branch 'nftest-alternativepreprocessing' of github.com:nf-core/…
jfy133 Mar 1, 2026
add84e9
Standardise variable names suggested by @sofstam
jfy133 Mar 3, 2026
ece7bd8
Tweak nft-ignore
jfy133 Mar 3, 2026
4300f68
Update snapshot
jfy133 Mar 3, 2026
995530d
Simplify file pickup in getAllFilesFromDir
jfy133 Mar 3, 2026
9e1ab16
Spacing
jfy133 Mar 3, 2026
a83629a
[automated] Fix code linting
nf-core-bot Mar 3, 2026
47c00fc
Remove hardcoded ignore file
jfy133 Mar 3, 2026
6584f11
Merge branch 'nftest-alternativepreprocessing' of github.com:nf-core/…
jfy133 Mar 3, 2026
dfde919
Implement fix from @maxulysse, reorder .nftignore to better match tem…
jfy133 Mar 4, 2026
a11f951
Finalise snapshot
jfy133 Mar 4, 2026
75a5fce
[automated] Fix code linting
nf-core-bot Mar 4, 2026
9aa1ca0
Account for porchop variablility
jfy133 Mar 4, 2026
60891bf
Merge branch 'nftest-alternativepreprocessing' of github.com:nf-core/…
jfy133 Mar 4, 2026
2b44588
[automated] Fix code linting
nf-core-bot Mar 4, 2026
7fbeb2b
Merge branch 'dev' into nftest-alternativepreprocessing
jfy133 Mar 5, 2026
2565ea8
Fix linting
jfy133 Mar 5, 2026
a05fe01
Merge branch 'dev' into nftest-alternativepreprocessing
jfy133 Mar 18, 2026
e4ba237
Merge branch 'dev' into nftest-alternativepreprocessing
jfy133 Mar 19, 2026
bebfac6
Ensure consistency with other profiles
jfy133 Mar 19, 2026
3586031
Merge branch 'dev' into nftest-alternativepreprocessing
jfy133 Mar 19, 2026
8bde575
Replace BBDuk to iunstead test prinseqplusplus, removing old prinseqp…
jfy133 Mar 19, 2026
80f0f62
And removal of old config
jfy133 Mar 19, 2026
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
7 changes: 4 additions & 3 deletions conf/test_alternativepreprocessing.config
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,19 @@ process {
}

params {
config_profile_name = 'Test profile for adapterremoval'
config_profile_description = "Minimal test to check the alternative short-read QC function, adapterremoval"
config_profile_name = 'Test profile for alternative preprocessing tools'
config_profile_description = "Minimal test to check the alternative short-read and long-read processing and QC tools"

// Input data
input = params.pipelines_testdata_base_path + 'taxprofiler/samplesheet.csv'
input = params.pipelines_testdata_base_path + 'taxprofiler/samplesheet_shortreadfastqpairsonly.csv'
databases = params.pipelines_testdata_base_path + 'taxprofiler/database_v1.3.csv'
perform_shortread_qc = true
perform_longread_qc = true
shortread_qc_tool = 'adapterremoval'
longread_adapterremoval_tool = 'porechop'
longread_filter_tool = 'filtlong'
perform_shortread_complexityfilter = true
shortread_complexityfilter_tool = 'prinseqplusplus'
perform_shortread_hostremoval = true
perform_longread_hostremoval = true
perform_runmerging = true
Expand Down
74 changes: 0 additions & 74 deletions conf/test_prinseqplusplus.config

This file was deleted.

3 changes: 0 additions & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,6 @@ profiles {
test_falcobbduk {
includeConfig 'conf/test_falcobbduk.config'
}
test_prinseqplusplus {
includeConfig 'conf/test_prinseqplusplus.config'
}
metaval {
includeConfig 'conf/metaval.config'
}
Expand Down
10 changes: 10 additions & 0 deletions tests/.nftignore
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Regarding the inconsistency in the sylph combined report, I would also add the file here, right?

Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ multiqc/multiqc_data/multiqc_software_versions.txt
multiqc/multiqc_data/multiqc_sources.txt
multiqc/multiqc_plots/{svg,pdf,png}/*.{svg,pdf,png}
multiqc/multiqc_report.html
bbduk/*.log
centrifuge/*.{fastq.gz,txt}
diamond/*/*.{tsv,log}
fastp/*.{html,zip,json,log}
fastqc/*/*_fastqc.{html,zip}
ganon/*/*.log
kaiju/*/*.{tsv,txt}
kraken2/*/*.{fastq.gz,txt}
krona/*.html
metaphlan/*/*.{biom,txt,sam}
nonpareil/*.{npa,npc,npl,npo,png,csv,json,pdf}
nonpareil/nonpareil_all_samples.tsv
pipeline_info/*.{html,json,txt,yml}
Expand Down
Loading
Loading