forked from nf-core/ampliseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_failed.config
More file actions
45 lines (38 loc) · 1.58 KB
/
Copy pathtest_failed.config
File metadata and controls
45 lines (38 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nextflow config file for running minimal tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines input files and everything required to run a fast and simple pipeline test.
Use as follows:
nextflow run nf-core/ampliseq -profile test_failed,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
process {
resourceLimits = [
cpus: 4,
memory: '15.GB',
time: '2.h'
]
}
params {
config_profile_name = 'Test profile - failed sample'
config_profile_description = 'Minimal test dataset to check pipeline function for failed samples'
// Input data
primer_fwd = "GTGYCAGCMGCCGCGGTAA"
primer_rev = "GGACTACNVGGGTWTCTAAT"
input = params.pipelines_testdata_base_path + "ampliseq/samplesheets/Samplesheet_failed_sample_v3.tsv"
metadata = params.pipelines_testdata_base_path + "ampliseq/samplesheets/Metadata_failed_sample.tsv"
sample_inference = "independent"
dada_ref_tax_custom = "https://zenodo.org/records/4310151/files/rdp_train_set_18.fa.gz"
skip_dada_addspecies = true
cut_dada_ref_taxonomy = true
max_len_asv = 255
filter_ssu = "bac"
ignore_failed_trimming = true
ignore_empty_input_files = true
ignore_failed_filtering = true
//this is to remove low abundance ASVs to reduce runtime of downstream processes
min_frequency = 10
// Skipping steps
skip_fastqc = true
}