-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Automated pipeline test specification. | ||
|
||
[ | ||
|
||
version = 1, | ||
|
||
// Testing featurestein-generate.py | ||
// reading from STDIN and writing to STDOUT | ||
test_featurestein_generate = [ | ||
|
||
command: '''python -m pipelines.rdkit.featurestein-generate | ||
-i ${PIN}/mpro/hits-17.sdf.gz | ||
-f ${POUT}featurestein.p''', | ||
|
||
stderr: [ 'Wrote merged feature map with 69 features as pickle to' ], | ||
|
||
creates: [ 'featurestein.p' ] | ||
] | ||
|
||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Automated pipeline test specification. | ||
|
||
[ | ||
|
||
version = 1, | ||
|
||
// Testing featurestein-score.py | ||
// reading from STDIN and writing to STDOUT | ||
test_featurestein_score = [ | ||
|
||
command: '''python -m pipelines.rdkit.featurestein-score | ||
-i ${PIN}/mpro/poses.sdf.gz | ||
-f ${PIN}/mpro/featurestein.p | ||
-o ${POUT}fstein''', | ||
|
||
stderr: [ 'FeatureMap has 69 features' ], | ||
|
||
creates: [ 'fstein.sdf.gz' ] | ||
] | ||
|
||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Automated pipeline test specification. | ||
|
||
[ | ||
|
||
version = 1, | ||
|
||
// Testing xcos.py | ||
// reading from STDIN and writing to STDOUT | ||
test_xcos = [ | ||
|
||
command: '''python -m pipelines.rdkit.xcos | ||
-i ${PIN}/mpro/poses.sdf.gz | ||
-f ${PIN}/mpro/hits-17.sdf.gz | ||
-o ${POUT}xcos''', | ||
|
||
stderr: [ 'No output format specified - using sdf' ], | ||
|
||
creates: [ 'xcos.sdf.gz' ] | ||
] | ||
|
||
] |