Comparing two gene lists for orthologs
2
0
Entering edit mode
7.8 years ago
Nitro_Shade ▴ 30

Hi there!

An ongoing project of mine requires me to compare two gene lists (that come from different organisms) and find out the extent of overlap - this includes orthologs.

Any existing tool that can do this?

If not, I was thinking of writing a script that does this for me. However, I'm new to BioPython (and BioPerl) and would greatly appreciate it if someone could tell me a way to extract orthologs from KEGG using a gene symbol.

Thanks in advance!

orthologs biopython • 1.9k views
ADD COMMENT
0
Entering edit mode

Are these lists actual sequences or just gene names?

ADD REPLY
0
Entering edit mode

These are gene names. Getting sequences will not be a hassle, though.

ADD REPLY
1
Entering edit mode
7.8 years ago

Ok. I would recommend the tool proteinortho for a simple multicore ortholog finder.

Get the gene/protein sequences, make sure the headers are unique and map them to each other. The main output is a simple TSV.

ADD COMMENT
0
Entering edit mode

Thanks! I'll try it out.

ADD REPLY
0
Entering edit mode
7.8 years ago
5heikki 11k

Assuming the genes have the same names in both organisms:

comm -1 -2 <(sort list1.txt) <(sort list2.txt) > lines_that_appear_in_both_files

man comm
..
       -1     suppress column 1 (lines unique to FILE1)
       -2     suppress column 2 (lines unique to FILE2)
ADD COMMENT
0
Entering edit mode

They don't. That's why I need to access orthologs :)

ADD REPLY

Login before adding your answer.

Traffic: 2141 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6