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?
• 844 views
•
link
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
• 0 views
•
link
Log in to answer this question.