forked from aertslab/SCENICprotocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
55 lines (46 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
54
manifest {
name = 'SCENIC Protocol'
description = 'A scalable SCENIC workflow for single-cell gene regulatory network analysis'
homePage = 'https://github.com/aertslab/SCENICprotocol'
author = 'Christopher Flerin, Bram Van de Sande'
mainScript = 'main.nf'
defaultBranch = 'master'
version = '0.2.0'
}
params {
loom_input = '' // unfiltered loom input
loom_filtered = 'filtered.loom'
loom_output = 'pyscenic_integrated-output.loom'
thr_min_genes = 200
thr_min_cells = 3
thr_n_genes = 5000
thr_pct_mito = 0.25
outdir = "output"
threads = 6
// SCENIC parameters
TFs = "allTFs_hg38.txt"
motifs = "resources/motifs-v9-nr.hgnc-m0.001-o0.0.tbl"
db = "resources/hg19*mc9nr.feather"
pyscenic_output = "pyscenic_output.loom"
grn = "grnboost2"
// parameters for reading loom files:
cell_id_attribute = "CellID"
gene_attribute = "Gene"
// pySCENIC container location
pyscenic_container = 'aertslab/pyscenic:0.9.19'
}
profiles {
standard {
process.executor = 'local'
}
docker {
docker.enabled = true
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
test {
includeConfig 'conf/test.config'
}
}