Skip to content

Commit

Permalink
Merge pull request #13 from cgjosephlee/fix_path
Browse files Browse the repository at this point in the history
Fix #12
  • Loading branch information
kishwarshafin authored Aug 1, 2019
2 parents d372a9a + 0390b5b commit 84f3575
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stitch.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import h5py
import argparse
import sys
import os
from modules.python.Stitch import Stitch
from modules.python.TextColor import TextColor
"""
Expand Down Expand Up @@ -44,7 +45,7 @@ def process_marginpolish_h5py(hdf_file_path, output_path, output_prefix, threads

# open an output fasta file
# we should really use a fasta handler for this, I don't like this.
output_filename = output_path + output_prefix + '.fa'
output_filename = os.path.join(output_path, output_prefix + '.fa')
consensus_fasta_file = open(output_filename, 'w')
sys.stderr.write(TextColor.GREEN + "INFO: OUTPUT FILE: " + output_filename + "\n" + TextColor.END)

Expand Down

0 comments on commit 84f3575

Please sign in to comment.