2022-02-18 06:55:14 +00:00
|
|
|
/*
|
2022-03-15 21:05:37 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-02-18 06:55:14 +00:00
|
|
|
Nextflow config file for running minimal tests
|
2022-03-15 21:05:37 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-02-18 06:55:14 +00:00
|
|
|
Defines input files and everything required to run a fast and simple pipeline test.
|
|
|
|
|
|
|
|
Use as follows:
|
2022-03-15 21:05:37 +00:00
|
|
|
nextflow run nf-core/taxprofiler -profile test,<docker/singularity> --outdir <OUTDIR>
|
2022-02-18 06:55:14 +00:00
|
|
|
|
|
|
|
----------------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
params {
|
|
|
|
config_profile_name = 'Test profile'
|
|
|
|
config_profile_description = 'Minimal test dataset to check pipeline function'
|
|
|
|
|
|
|
|
// Limit resources so that this can run on GitHub Actions
|
2022-03-28 18:38:16 +00:00
|
|
|
max_cpus = 2
|
2022-02-18 06:55:14 +00:00
|
|
|
max_memory = '6.GB'
|
|
|
|
max_time = '6.h'
|
|
|
|
|
|
|
|
// Input data
|
|
|
|
// TODO nf-core: Specify the paths to your test data on nf-core/test-datasets
|
|
|
|
// TODO nf-core: Give any required params for the test so that command line flags are not needed
|
2022-04-13 16:51:56 +00:00
|
|
|
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/taxprofiler/samplesheet.csv'
|
|
|
|
databases = 'https://raw.githubusercontent.com/nf-core/test-datasets/taxprofiler/database.csv'
|
|
|
|
run_kraken2 = true
|
|
|
|
run_malt = true
|
|
|
|
run_metaphlan3 = true
|
|
|
|
run_centrifuge = true
|
2022-04-13 10:00:28 +00:00
|
|
|
perform_shortread_clipmerge = true
|
|
|
|
perform_longread_clip = false
|
|
|
|
perform_shortread_complexityfilter = true
|
2022-04-13 13:27:53 +00:00
|
|
|
perform_shortread_hostremoval = true
|
|
|
|
shortread_hostremoval_reference = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/genome/genome.fasta'
|
2022-04-13 16:51:56 +00:00
|
|
|
run_kaiju = true
|
2022-02-18 06:55:14 +00:00
|
|
|
}
|