Having trouble using the create-profmark tool in the HMMER suite
1
0
Entering edit mode
3 months ago
Jacob • 0

Hi all,

There is a tool in the HMMER suite that I'm particularly interested in using to divide a protein dataset, called create-profmark. This is the program that the developers used in designing pfam, and is deep in the code of HMMER (and not referenced in the HMMER manual). However, the program does have a readme on how to use it, which is attached below.

I have HMMER downloaded and have tried to follow the readme, by carrying out the command in the readme:

Usage: ./create-profmark <benchmark_prefix> <Stockholm MSA file> <FASTA sequence database>

When I do this, the command is not recognized. Should I be configuring HMMER differently? Or performing this function in a specific folder? Any advice would be highly appreciated.

Here is the readme and GitHub page for create-profmark, which is nested in the HMMER suite: https://github.com/EddyRivasLab/hmmer/blob/master/profmark/00README.md

Best,

Jacob

HMMER create-profmark • 409 views
ADD COMMENT
1
Entering edit mode
3 months ago
Mensur Dlakic ★ 27k

I have been using HMMer for >20 years and have never heard of this program. Apparently it does exist, but that doesn't mean that it is installed by default.

The way you are running the program is likely to be wrong:

./create-profmark <benchmark_prefix> <Stockholm MSA file> <FASTA sequence database>

This command, specifically the ./ at the beginning, means you are running this program from your current directory. That is unlikely to contain a copy of create-profmark even if it was installed. I suggest you try this:

which create-profmark

If that gives you in response something like /usr/bin/create-profmark, then you can run the program but without ./. If the response to the above command is create-profmark: Command not found., you either don't have create-profmark installed or it is in a directory that is not included in the $PATH variable. By googling Linux setting $PATH you should get enough information to explore the latter possibility.

ADD COMMENT
0
Entering edit mode

Thank you so much for this information! It took me over the edge to get it up and running, I really appreciate it.

ADD REPLY

Login before adding your answer.

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