I'm trying to use Unipept, a web application designed for metaproteomics/metapeptidomics data analysis. The Unipept CLI is a set of subcommands that are command line wrappers around the Unipept web services. All of the code is on GitHub.
So far I've used one subcommand, unipept pept2lca to go from a list of (de novo sequenced) tryptic peptides to a csv file listing the lowest common ancestor taxa of proteins matched to these peptides. This worked fine, as you can see in this notebook.
Now I'm trying another subcommand, unipept pept2prot, that should return the set of UniProt entries containing a given tryptic peptide. Its input, according to this CLI subcommand description, can be a file like the one I'm submitting (text files with one tryptic peptide per line). When I try running this, as you can see in this notebook, I get no error or output.
It works fine for some individual peptides that actually match to UniProt proteins. But if I input a single peptide that doesn't match, I also get no error or returns. Any advice?
I'm trying to use Unipept, a web application designed for metaproteomics/metapeptidomics data analysis. The Unipept CLI is a set of subcommands that are command line wrappers around the Unipept web services. All of the code is on GitHub.
So far I've used one subcommand,
unipept pept2lca
to go from a list of (de novo sequenced) tryptic peptides to a csv file listing the lowest common ancestor taxa of proteins matched to these peptides. This worked fine, as you can see in this notebook.Now I'm trying another subcommand,
unipept pept2prot
, that should return the set of UniProt entries containing a given tryptic peptide. Its input, according to this CLI subcommand description, can be a file like the one I'm submitting (text files with one tryptic peptide per line). When I try running this, as you can see in this notebook, I get no error or output.It works fine for some individual peptides that actually match to UniProt proteins. But if I input a single peptide that doesn't match, I also get no error or returns. Any advice?