forked from wbazant/CORRAL
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow.config
More file actions
16 lines (16 loc) · 826 Bytes
/
nextflow.config
File metadata and controls
16 lines (16 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
params {
inputPath = "data/localFiles"
refdb = "$launchDir/data/database/GRCh37"
alignmentStatsCommand = "samtools stats"
resultDir = "$launchDir/output"
libraryLayout = "paired"
downloadMethod = "local"
markerToTaxonPath = "$launchDir/data/marker-to-taxon-id.tsv"
bowtie2Command = "bowtie2 --omit-sec-seq --no-discordant --no-unal -a"
summarizeAlignmentsCommand = 'marker_alignments --min-read-query-length 60 --min-taxon-num-markers 2 --min-taxon-num-reads 2 --min-taxon-better-marker-cluster-averages-ratio 1.01 --threshold-avg-match-identity-to-call-known-taxon 0.97 --threshold-num-taxa-to-call-unknown-taxon 1000 --threshold-num-markers-to-call-unknown-taxon 1000 --threshold-num-reads-to-call-unknown-taxon 1000'
summaryFormat = "matrix"
summaryColumn = "cpm"
}
docker {
enabled = true
}