This is a test version of Biostars. For the public version, visit https://www.biostars.org.
predicted protein and sequence

Hello, I am interested in fetching all the predicted protein (proteins that do not have experimental evidence) of a particular organism or hypothetical proteins of an organism so that MS/MS analysis can be carried out to prove proteomic evidence. Can somebody please help me?

sequence

2 answers

I use uniprot for such purpose.

It has PE line. https://www.uniprot.org/docs/userman.htm#PE_line

Check an example. https://www.uniprot.org/uniprot/Q8YW84.txt

Using EntrezDirect. This example uses Malus as an example.

$ esearch -db protein -query "MALUS DOMESTICA [ORGN]" | esummary | xtract -pattern DocumentSummary -element Caption | grep "^XP" | xargs -n 1 sh -c 'efetch -db protein -id "$0" -format fasta'

Log in to answer this question.