-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing tRNA annotation #208
Comments
I located mitoz/annotate/script/mitfi and read these: The mitochondrial tRNA finder (MiTFi) script is a java script Run the script
We need your feedback! Please, send your comments, suggestions or questions to *http://infernal.janelia.org/ I ran the MiTFi script but got these: |
summary.txt |
This could be due to the
The content of the #!/bin/bash
platform="$(uname | tr '[:upper:]' '[:lower:]')"
arch="$(arch | tr '[:upper:]' '[:lower:]')"
if [[ "$platform" == "darwin" ]]; then
if [[ "$arch" == "arm64" ]]; then
platform="darwin_arm64"
else
platform="darwin_i386"
fi
else
platform='linux'
fi
echo "detected platform: $platform"
if [[ ! -f "cmsearch" ]]; then
ln -s infernal-1.0.2.binaries/cmsearch.$platform cmsearch
fi
# 'realpath' is in the package 'coreutils' https://anaconda.org/conda-forge/coreutils
a=$(realpath cmsearch)
b=$(basename $a)
c=`echo $b | sed 's#cmsearch.##'`
if [[ "$platform" != "$c" ]]; then
rm cmsearch
ln -s infernal-1.0.2.binaries/cmsearch.$platform cmsearch
fi
If you go to So, the thing is, you are using the Windows Sublinux system, whose platform name doesn't match either of the two. My suggestion is: In your terminal, try the two commands: platform="$(uname | tr '[:upper:]' '[:lower:]')"
arch="$(arch | tr '[:upper:]' '[:lower:]')"
echo $platform
echo $arch
And tell me what the values are. Secondly, go to
to see if this binary works. If |
Thanks for reply. $ platform="$(uname | tr '[:upper:]' '[:lower:]')" I remember that I used "conda install bioconda::mitoz" form https://anaconda.org/bioconda/mitoz to get Mitoz. Does that make the problem? |
You might need to compile the wget http://eddylab.org/software/infernal/infernal-1.0.2.tar.gz |
Got it wget http://eddylab.org/software/infernal/infernal-1.0.2.tar.gz tar -zxvf infernal-1.0.2.tar.gz cd infernal-1.0.2 find the infernal-1.0.2/src/cmsearch binary. " |
yes, replace your new |
You mean save the new one? I tried to change the link in detect_platform.sh: I try on my fastaq again and it also works. Thanks so much! |
on which platform/server? (Windows? Windows Sublinux? MacOS? Ubuntu? etc.)
Windows Sublinux
MitoZ version?
3.6
How did you install MitoZ? (e.g. Docker, Udocker, Singularity, Conda-Pack, Conda, or source code)
Conda
Did you run a test after your installation, and was the test run okay?
yes, work well
How much data (roughly) did you use for mitogenome assembly? e.g. 5Gbp?
2G
The command you used?
$ mitoz all --outprefix Stenocrobylus_festivus --threa
d_number 2 --clade Arthropoda --genetic_code 5 --fq1 17-1119_1.fq.gz --fq2 17-1119_2.fq.gz --fastq_read_length 150 --requiring_taxa Xenocatantops
Problem description
Don't see any tRNA annotated
Log messages from MitoZ (stdout and stderr, e.g., both
m.log
andm.err
files)mitoz.log
Anyway, I'm not sure that if error2 is related. I got some trouble when generate .png file of circos, and I solved it by installed Circos separately. Thanks a lot if you can help 谢谢
The text was updated successfully, but these errors were encountered: