-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplitflow.config
More file actions
135 lines (110 loc) · 3.95 KB
/
Copy pathsplitflow.config
File metadata and controls
135 lines (110 loc) · 3.95 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
// Workflow parameters
params {
// experiment and system specific considerations
workflow = "CITE-seq"
//system = "lsf"
// demultiplexing parameters
fasta = "../files/fasta/genome.fa"
vcf = "../files/GRCh38_1000G_MAF0.01_GeneFiltered_ChrEncoding.vcf"
// vcf_donor= ../merged_donors.vcf
translation = '../files/donor_translation_test.csv'
hash_data = null
// vireo
vireo_cellsnp_p = 20
minMaf = 0.05
vmincount = 20
vireo_p = 20
// visualizations
n_pcs = 30
n_ng = 20
isotypes = null
// cell type annotation
celltype_ref_azimuth = "bonemarrowref"
celltype_ref_celltypist = "Immune_All_Low.pkl"
// amulet
q_value = 0.05
}
process {
maxRetries = 5
cache = "lenient"
executor = "lsf"
withLabel: 'cellbender' {
container = 'docker://us.gcr.io/broad-dsde-methods/cellbender:latest'
containerOptions = '--nv'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'cellbender_format' {
container ='file:///.../envs/singularity/python-docker.img'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'demultiplexing_hto' {
container ='file:///../envs/singularity/r-seurat-docker.img'
containerOptions = '--bind /omics:/omics'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'souporcell' {
container ='file://../envs/Demuxafy.sif'
containerOptions = '--bind /omics:/omics'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'cellsnp' {
container ='file://../envs/Demuxafy.sif'
containerOptions = '--bind /omics:/omics'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'vireo' {
container ='file://../envs/Demuxafy.sif'
containerOptions = '--bind /omics:/omics'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'detect_doublet' {
container = 'file://../envs/singularity/r-seurat-docker.img'
containerOptions = '--bind /omics:/omics'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'amulet' {
container ='file://../envs/singularity/r-seurat-docker.img'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'seurat' {
container ='file://../envs/singularity/r-seurat-docker.img'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'muon' {
container ='file:///.../envs/singularity/python-docker.img'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'annotate_seurat' {
container='docker://hub.docker.com/r/satijalab/azimuth'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'annotate_scanpy' {
container='quay.io/teichlab/celltypist:latest'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'visualize_scanpy' {
container ='file:///.../envs/singularity/python-docker.img'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
withLabel: 'visualize_seurat' {
container ='file://../envs/singularity/r-seurat-docker.img'
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
}
}
singularity {
enabled = true
cacheDir = '.apptainer'
tempDir = '.apptainer'
}
conda {
enabled = true
}
executor{
perJobMemLimit = true
}
report {
overwrite = true
}
dag {
overwrite = true
}