File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env nextflow
2
2
3
3
// expand params
4
- params. hits = ' data/mpro/hits-17 .sdf.gz'
4
+ params. hits = ' data/mpro/hits-5 .sdf.gz'
5
5
params. chunk_size_expand = 200
6
6
params. limit = 0
7
7
params. digits = 4
@@ -26,12 +26,14 @@ params.asfile = 'data/mpro/docking-tethered.as'
26
26
params. num_dockings = 5
27
27
28
28
// featurestein
29
+ params. fragments = ' data/mpro/hits-5.sdf.gz'
29
30
30
31
// files
31
32
hits = file(params. hits)
32
33
protein = file(params. protein)
33
34
prmfile = file(params. prmfile)
34
35
asfile = file(params. asfile)
36
+ fragments = file(params. fragments)
35
37
36
38
process fragnet_expand {
37
39
@@ -125,13 +127,13 @@ process gen_feat_maps {
125
127
container ' informaticsmatters/rdkit_pipelines:latest'
126
128
127
129
input:
128
- file hits
130
+ file fragments
129
131
130
132
output:
131
133
file ' featurestein.p' into fmaps
132
134
133
135
"""
134
- python -m pipelines.xchem.featurestein_generate -i '$h its ' -f featurestein.p
136
+ python -m pipelines.xchem.featurestein_generate -i '$f ragments ' -f featurestein.p
135
137
"""
136
138
}
137
139
You can’t perform that action at this time.
0 commit comments