File tree Expand file tree Collapse file tree 3 files changed +62
-0
lines changed
src/python/pipelines/rdkit Expand file tree Collapse file tree 3 files changed +62
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Automated pipeline test specification.
2
+
3
+ [
4
+
5
+ version = 1,
6
+
7
+ // Testing featurestein-generate.py
8
+ // reading from STDIN and writing to STDOUT
9
+ test_featurestein_generate = [
10
+
11
+ command: '''python -m pipelines.rdkit.featurestein-generate
12
+ -i ${PIN}/mpro/hits-17.sdf.gz
13
+ -f ${POUT}featurestein.p''',
14
+
15
+ stderr: [ 'Wrote merged feature map with 69 features as pickle to' ],
16
+
17
+ creates: [ 'featurestein.p' ]
18
+ ]
19
+
20
+ ]
Original file line number Diff line number Diff line change
1
+ // Automated pipeline test specification.
2
+
3
+ [
4
+
5
+ version = 1,
6
+
7
+ // Testing featurestein-score.py
8
+ // reading from STDIN and writing to STDOUT
9
+ test_featurestein_score = [
10
+
11
+ command: '''python -m pipelines.rdkit.featurestein-score
12
+ -i ${PIN}/mpro/poses.sdf.gz
13
+ -f ${PIN}/mpro/featurestein.p
14
+ -o ${POUT}fstein''',
15
+
16
+ stderr: [ 'FeatureMap has 69 features' ],
17
+
18
+ creates: [ 'fstein.sdf.gz' ]
19
+ ]
20
+
21
+ ]
Original file line number Diff line number Diff line change
1
+ // Automated pipeline test specification.
2
+
3
+ [
4
+
5
+ version = 1,
6
+
7
+ // Testing xcos.py
8
+ // reading from STDIN and writing to STDOUT
9
+ test_xcos = [
10
+
11
+ command: '''python -m pipelines.rdkit.xcos
12
+ -i ${PIN}/mpro/poses.sdf.gz
13
+ -f ${PIN}/mpro/hits-17.sdf.gz
14
+ -o ${POUT}xcos''',
15
+
16
+ stderr: [ 'No output format specified - using sdf' ],
17
+
18
+ creates: [ 'xcos.sdf.gz' ]
19
+ ]
20
+
21
+ ]
You can’t perform that action at this time.
0 commit comments