mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 23:03:10 +00:00
70 lines
2.1 KiB
Text
70 lines
2.1 KiB
Text
/*
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Nextflow config file for running full-size tests
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Defines input files and everything required to run a full size pipeline test.
|
|
Use as follows:
|
|
nextflow run nf-core/taxprofiler -profile test_full,<docker/singularity> --outdir <OUTDIR>
|
|
----------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
params {
|
|
config_profile_name = 'Full test profile'
|
|
config_profile_description = 'Full test dataset to check pipeline function'
|
|
|
|
// Input data for full size test
|
|
input = 'https://github.com/nf-core/test-datasets/raw/taxprofiler/samplesheet_full.csv'
|
|
databases = 'https://github.com/nf-core/test-datasets/raw/taxprofiler/database_full.csv'
|
|
|
|
// Genome references
|
|
hostremoval_reference = 'ftp://ftp.ncbi.nlm.nih.gov/genomes/all/GCA/000/819/615/GCA_000819615.1_ViralProj14015/GCA_000819615.1_ViralProj14015_genomic.fna.gz'
|
|
|
|
save_preprocessed_reads = true
|
|
|
|
perform_shortread_qc = true
|
|
shortread_qc_mergepairs = true
|
|
perform_shortread_complexityfilter = true
|
|
save_complexityfiltered_reads = true
|
|
|
|
perform_longread_qc = true
|
|
perform_shortread_hostremoval = true
|
|
perform_longread_hostremoval = true
|
|
save_hostremoval_index = true
|
|
save_hostremoval_bam = true
|
|
save_hostremoval_unmapped = true
|
|
|
|
perform_runmerging = true
|
|
save_runmerged_reads = true
|
|
|
|
run_centrifuge = true
|
|
centrifuge_save_reads = true
|
|
|
|
run_diamond = true
|
|
|
|
run_kaiju = true
|
|
|
|
run_kraken2 = true
|
|
kraken2_save_reads = true
|
|
kraken2_save_readclassification = true
|
|
kraken2_save_minimizers = true
|
|
|
|
run_krakenuniq = true
|
|
krakenuniq_save_reads = true
|
|
krakenuniq_save_readclassifications = true
|
|
|
|
run_bracken = true
|
|
|
|
run_malt = true
|
|
malt_save_reads = true
|
|
malt_generate_megansummary = true
|
|
|
|
run_metaphlan3 = true
|
|
|
|
run_motus = true
|
|
motus_save_mgc_read_counts = true
|
|
|
|
run_profile_standardisation = true
|
|
run_krona = true
|
|
}
|
|
|
|
cleanup = true
|