Skip to content

Commit

Permalink
delete
Browse files Browse the repository at this point in the history
  • Loading branch information
psj1997 committed Jun 17, 2020
1 parent 13449ab commit ea3ba9e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 64 deletions.
2 changes: 1 addition & 1 deletion gmgc_mapper/alignment.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import skbio.alignment
from skbio.sequence import DNA,Protein
from .BLOSUM import blosum62,blosum50
from BLOSUM import blosum62,blosum50

def num_alignment(query,target):
num = 0
Expand Down
2 changes: 1 addition & 1 deletion gmgc_mapper/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def gene_prediction(fasta_input, output, tmpdirname):
fasta_input = tmpdirname + '/input.fasta'

if os.path.splitext(fasta_input)[1] == '.gz':
with bz2.BZ2File(fasta_input) as ifile:
with gzip.GzipFile(fasta_input) as ifile:
open(tmpdirname + '/input.fasta', "wb+").write(ifile.read())
fasta_input = tmpdirname + '/input.fasta'

Expand Down
62 changes: 0 additions & 62 deletions gmgc_mapper/output.md

This file was deleted.

0 comments on commit ea3ba9e

Please sign in to comment.