Unverified Commit 57720ec7 authored by Gustaf Ahdritz's avatar Gustaf Ahdritz Committed by GitHub
Browse files

Merge pull request #24 from yuzhiguo07/patch-1

Update precompute_alignments_mmseqs.py
parents ca810168 1bfb1e1b
...@@ -54,7 +54,7 @@ def main(args): ...@@ -54,7 +54,7 @@ def main(args):
chunk_fasta = [el for tup in zip(names[s:e], seqs[s:e]) for el in tup] chunk_fasta = [el for tup in zip(names[s:e], seqs[s:e]) for el in tup]
s = e s = e
prot_dir = os.path.join(args.output_dir, chunk_fasta[0][:1].upper()) prot_dir = os.path.join(args.output_dir, chunk_fasta[0][1:].upper())
if(os.path.exists(prot_dir)): if(os.path.exists(prot_dir)):
# We've already computed this chunk # We've already computed this chunk
continue continue
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment