-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow.config
45 lines (34 loc) · 1.11 KB
/
nextflow.config
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
// your workflow parameters
params {
codename = 'quick-rnaseq'
outdir = "./results"
// experiment information
experiment.samplesheet = "./testdata/samplesheet.csv"
experiment.contrasts = [['case', 'control'],['control','case']]
// transcriptome information
transcriptome.reference = ""
transcriptome.decoys = ""
// reads trimming
fastp.args = ""
// salmon parameters
salmon.index.args = '--gencode'
salmon.quant.libtype = 'A'
salmon.quant.args = '--validateMappings --gcBias'
// summarize_to_gene parameters
summarize_to_gene.counts_from_abundance = 'no'
summarize_to_gene.organism_db = 'org.Hs.eg.db'
// counts transform can be rlog or vst
qc.pca.transform = 'rlog'
qc.ma.lfc_threshold = 0
qc.sample.transform = 'rlog'
// differential gene expression parameters
dge.lfc_threshold = 0
dge.fdr = 0.05
// gene ontology analysis parameters
gene_ontology.organism_db = 'org.Hs.eg.db'
gene_ontology.gene_id = 'ensembl'
gene_ontology.remove_gencode_version = 'yes'
gene_ontology.fdr = 0.05
}
// include basic process configuration options
includeConfig 'conf/base.config'