-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.config
143 lines (111 loc) · 3 KB
/
input.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
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
136
137
138
139
140
141
142
143
includeConfig './configs/pipeline_input.config'
includeConfig './configs/dashboard.config'
process {
withName: anndata_concat{
conda = './conda_envs/nextflow.yaml'
}
withName: createGuideRef{
conda = './conda_envs/nextflow.yaml'
}
withName: createHashingRef{
conda = './conda_envs/nextflow.yaml'
}
withName: seqSpecCheck {
conda = './conda_envs/nextflow.yaml'
}
withName: CreateMuData_HASHING{
conda = './conda_envs/nextflow.yaml'
}
withName: CreateMuData{
conda = './conda_envs/nextflow.yaml'
}
withName: demultiplex{
conda = './conda_envs/nextflow.yaml'
}
withName: doublets_scrub_HASHING{
conda = './conda_envs/nextflow.yaml'
}
withName: doublets_scrub{
conda = './conda_envs/nextflow.yaml'
}
withName: downloadReference{
conda = './conda_envs/nextflow.yaml'
}
withName: filter_hashing{
conda = './conda_envs/nextflow.yaml'
}
withName: guide_assignment_mudata{
conda = './conda_envs/nextflow.yaml'
}
withName: hashing_concat{
conda = './conda_envs/nextflow.yaml'
}
withName: inference_mudata{
conda = './conda_envs/nextflow.yaml'
}
withName: mappingGuide{
conda = './conda_envs/nextflow.yaml'
cpus = 4
memory = 64.GB
}
withName: mappingHashing{
conda = './conda_envs/nextflow.yaml'
cpus = 4
memory = 64.GB
}
withName: mappingscRNA {
conda = './conda_envs/nextflow.yaml'
cpus = 4
memory = 64.GB
}
withName: prepare_covariate {
conda = './conda_envs/nextflow.yaml'
}
withName: prepare_guide_inference {
conda = './conda_envs/nextflow.yaml'
}
withName: prepare_user_guide_inference{
conda = './conda_envs/nextflow.yaml'
}
withName: prepare_all_guide_inference{
conda = './conda_envs/nextflow.yaml'
}
withName: PreprocessAnnData{
conda = './conda_envs/nextflow.yaml'
}
withName: seqSpecParser{
conda = './conda_envs/nextflow.yaml'
}
withName:guide_assignment_cleanser{
container = 'docker://sjiang9/cleanser_env:0.5'
executor = 'local'
}
withName:prepare_covariate {
conda = './conda_envs/nextflow.yaml'
}
withName:guide_assignment_sceptre{
container = 'docker://igvf/sceptre-igvf:v0.2'
executor = 'local'
}
withName:inference_sceptre {
container = 'docker://igvf/sceptre-igvf:v0.2'
executor = 'local'
}
withName:inference_perturbo {
container = 'docker://pinellolab/perturbo-cuda:0.1'
executor = 'local'
}
withName:mergedResults {
conda = './conda_envs/nextflow.yaml'
}
}
singularity {
enabled = true
autoMounts = true
runOptions = '--nv'
}
conda {
enabled = true
useMamba = true
createTimeout = '1h'
}