Skip to content

Commit

Permalink
Improved snptag extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
mmiladi committed Feb 7, 2017
1 parent 34e5194 commit 35187ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def main(argv):
tmp_seq_fa.close()

#run RNAsnp
res_rnasnp=run_RNAsnp(tmp_seq_fa.name,snp,200)
res_rnasnp=run_RNAsnp(tmp_seq_fa.name,snp,window)
res_rnasnp=res_rnasnp.assign(ID=id)
df_rnasnp = df_rnasnp.append(res_rnasnp, ignore_index=True)

Expand All @@ -80,7 +80,7 @@ def main(argv):
df_remurna = df_remurna.append(res_remurna, ignore_index=True)

##run RaSE
# rase_scores=rase_scores+ [[id,snp[0],run_RaSE(sequence,snp, window=200)]]
# rase_scores=rase_scores+ [[id,snp[0],run_RaSE(sequence,snp, window=window)]]

# remove temp file
os.remove(tmp_seq_fa.name)
Expand Down

0 comments on commit 35187ca

Please sign in to comment.