Skip to content

Commit

Permalink
fixed issue #12 as according to suggested code
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeb1996 committed Feb 20, 2023
1 parent b00de36 commit cb670da
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/crackling/Crackling.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,17 +423,16 @@ def processSequence(sequence):

printer(f'\t\t{guidesInPage:,} guides in this page.')

runner('{} --noPS -j{} -i {} -o'.format(
runner('{} --noPS -j{} -i {} -o {}'.format(
configMngr['rnafold']['binary'],
configMngr['rnafold']['threads'],
configMngr['rnafold']['input']
configMngr['rnafold']['input'],
configMngr['rnafold']['output']
),
shell=True,
check=True
)

os.replace('RNAfold_output.fold' ,configMngr['rnafold']['output'])


printer('\t\tStarting to process the RNAfold results.')

RNAstructures = {}
Expand Down

0 comments on commit cb670da

Please sign in to comment.