Annotation using Pfam
1
0
Entering edit mode
21 days ago

Hi Community,

I have 17 metagenomically assembled genomes (MAGs). I want to annotate the protein of these genome using Pfam.

I want a step by step guideline for the annotations in Linux bash.

My idea is: I need to download the Pfam database but there are lot of files and I am confused which one should I download. Next I need to use HMM for the annotations.

Thank you so much!

annotation metagenomic Protein Pfam • 393 views
ADD COMMENT
2
Entering edit mode
21 days ago
Mensur Dlakic ★ 27k

This is not going to be step by step, but hopefully still useful. First download and unpack Pfam HMM database:

wget https://ftp.ebi.ac.uk/pub/databases/Pfam/current_release/Pfam-A.hmm.gz
gunzip Pfam-A.hmm.gz
hmmpress Pfam-A.hmm

Assuming your protein sequences are in proteome.faa, do the search:

hmmscan -o annotations.txt --tblout annotations.tbl -E 0.01 --cpu 4 Pfam-A.hmm proteome.faa

Programs from the HMMer package are described here.

ADD COMMENT
0
Entering edit mode

Thank you so much

ADD REPLY

Login before adding your answer.

Traffic: 2078 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