-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.yml
44 lines (44 loc) · 1.81 KB
/
config.yml
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
workdir: "."
# Download parameters for fastq-dump (leave empty unless testing)
dlparams: ""
sample_file_list: "sample_list.tsv"
datadir: "data/raw"
mem_per_cpu: 6
## data for filtering
fungi_url: "https://zenodo.org/record/3550762/files/fungi_transcripts.fasta.gz?download=1"
host_fna_url: "https://zenodo.org/record/3550762/files/spruce.fna.gz?download=1"
host_gtf_url: ""
## mapping
host_aligner: "star"
bowtie2_params: "--very-sensitive"
# if STAR aligner fails to map reads to host, consider lowering the values below
# in order to increase sensitivity of the aligner. WARNING: Note that this may
# increase the number of false positive host reads meaning that fungal reads
# may end up in the 'host' bin
star_params: "--outFilterScoreMinOverLread 0.66 --outFilterMatchNminOverLread 0.66 --seedSearchStartLmax 50"
fc_params: "-B -p -t CDS -g gene_id -Q 10"
star_overhang: 99
## assembly
# Choose between 'megahit', 'trinity', 'transabyss'
assembler: trinity
transabyss_kmers: [21, 25, 29, 31, 65, 75, 85, 95]
co_assembly: True
single_assembly: False
min_contig_len: 200
## filtering
# Choose between 'concordant', 'both_mapped' or 'one_mapped'
paired_strategy: "one_mapped"
# Choose between 'unfiltered', 'bowtie2', 'taxmapper' or 'filtered' (using a combination)
read_source: "bowtie2"
# trimmomatic
trimmomatic_home: ""
qc_trim_settings: "LEADING:25 TRAILING:25 SLIDINGWINDOW:4:15 HEADCROP:2 MINLEN:50"
# diamond
diamond_fasta_url: "https://zenodo.org/record/3737678/files/fasta.gz?download=1"
diamond_nodes_url: "https://zenodo.org/record/3737678/files/nodes.dmp.gz?download=1"
diamond_taxonmap_url: "https://zenodo.org/record/3737678/files/taxonmap.gz?download=1"
# dbCAN (Suggested thresholds for fungi, see: http://csbl.bmb.uga.edu/dbCAN/download/readme.txt)
dbCAN_eval: 0.00000000000000001
dbCAN_cov: 0.45
tax_rank: kingdom
tax_name: Fungi