This is a test version of Biostars. For the public version, visit https://www.biostars.org.
MARVEL all_vogs_hmm_profiles issue

I'm trying to run MARVEL on mac. I've followed installations steps, installed dependencies, but I keep running into a recurring problem. MARVEL unpacks a tar.gz file called "AllvogHMMprofiles.tar.gz" and searches for all_vogs_hmm_profiles_feb2018.hmm but cannot find it. I've manually searched through the tar file and cannot find all_vogs_hmm_profiles_feb2018.hmm. Any ideas?

marvel prophage phage genomics

1 answer

A similar question was already answered here.

Briefly, the archive contains individual HMM files, but you still need to concatenate them to make a final HMM.

tar -zxvf AllvogHMMprofiles.tar.gz
cat AllvogHMMprofiles/* > all_vogs_hmm_profiles_feb2018.hmm
hmmpress all_vogs_hmm_profiles_feb2018.hmm
rm -rf AllvogHMMprofiles

Log in to answer this question.