This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import argparse | |
from glob import glob | |
import os | |
try: | |
from Bio.SeqRecord import SeqRecord | |
from Bio import AlignIO | |
from Bio.Align import MultipleSeqAlignment | |
from Bio.Seq import Seq | |
from Bio.Alphabet import generic_protein |
NewerOlder