Last active
May 23, 2016 08:54
-
-
Save dylan-lawrence/2f59ac2f33053c2a0187 to your computer and use it in GitHub Desktop.
A python script to accept an accession number and fetch ortholog proteins in a list of specified organisms
This file contains 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
#Accepts an accession number, returns protein sequences | |
from Bio import SeqIO | |
from Bio import Entrez | |
from Bio.Blast import NCBIWWW,NCBIXML | |
import argparse | |
from time import sleep | |
parser = argparse.ArgumentParser(description='Get aa sequence from accession number') | |
parser.add_argument('-an', '--accession', help='the accession number for the sequence') | |
parser.add_argument('-o', '--output', help='the outputdirectory') | |
parser.add_argument('-l', '--orglist', help='organism list') | |
args = parser.parse_args() | |
#Get original sequence | |
Entrez.email = '<your email here>' | |
handle = Entrez.efetch(db="protein", id=args.accession, retmode='xml') | |
records = Entrez.read(handle) | |
name = records[0]['GBSeq_organism'].lower().replace(' ','_') | |
with open(args.output+name+'.fasta', 'w') as f: | |
f.write('>gi|' + args.accession + '|' + records[0]['GBSeq_definition'] + '\n' + records[0]['GBSeq_sequence']) | |
#Run blast on organism list to find orthologs | |
query = args.output+name+'.fasta' | |
seq = SeqIO.read(query,'fasta') | |
with open(args.orglist, 'r') as f: | |
for line in f: | |
line = line.rstrip('\n') | |
result = NCBIWWW.qblast('blastp', 'nr', seq.seq, entrez_query=line+'[Organism]') | |
records = NCBIXML.parse(result) | |
accno = None | |
for record in records: | |
accno = record.alignments[0].accession | |
handle = Entrez.efetch(db='protein', id=accno, retmode='xml') | |
records = Entrez.read(handle) | |
print 'Writing to: ' + '/'.join(query.split('/')[0:-1]) + '/' + line.lower().replace(' ','_') + '.fasta' | |
with open('/'.join(query.split('/')[0:-1]) + '/' + line.lower().replace(' ','_') + '.fasta', 'w') as o: | |
o.write('>gi|' + accno + '|' + records[0]['GBSeq_definition'] + '\n' + records[0]['GBSeq_sequence']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment