Skip to content

Commit

Permalink
fix logging bug in preprocess_dataset script
Browse files Browse the repository at this point in the history
  • Loading branch information
heller committed Nov 22, 2017
1 parent 5ae85bd commit 9138ef0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/preprocess_dataset
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,8 @@ def main(args):
shapeNegativeFileName = options.directory + '/shapes/' + options.dataset_name + '/negative.txt'
if options.jump_to <= 6:
print>>sys.stderr, '###STEP 6: Calculating RNAshapes'
print>>sys.stderr, 'INPUT:', fastaPositiveFileName
print>>sys.stderr, 'OUTPUT:', shapePositiveFileName
print>>sys.stderr, 'INPUT:', fastaNegativeFileName
print>>sys.stderr, 'OUTPUT:', shapeNegativeFileName

calculate_rna_shapes_from_file(shapeNegativeFileName, fastaNegativeFileName, 10)

Expand All @@ -341,7 +341,7 @@ def main(args):
structuresNegativeFileName = options.directory + '/structures/' + options.dataset_name + '/negative.txt'
if options.jump_to <= 7:
print>>sys.stderr, '###STEP 7: Calculating RNAstructures'
print>>sys.stderr, 'INPUT:', fastaPositiveFileName
print>>sys.stderr, 'INPUT:', fastaNegativeFileName
print>>sys.stderr, 'OUTPUT:', structuresNegativeFileName

calculate_rna_structures_from_file(structuresNegativeFileName, fastaNegativeFileName)
Expand Down

0 comments on commit 9138ef0

Please sign in to comment.