BRAKER
BRAKER copied to clipboard
GeneMark-ETP crashes with an empty evidence.gff file
Hello, I am running Braker using singularity. The installation was straightforward forward and all the test runs were completed successfully. When I run my sequence I encountered this error where GeneMark-ETP crashes with an empty evidence.gff file.
Command used: singularity exec /ocean/projects/tra180030p/ytekle/Software/BRAKER/braker3.sif braker.pl --genome=.Mastigamoeba_balamuthi_genome_v5.1_genomic.fasta
--hints=./prothint_augustus.gff \
GeneMark-ETP.stdout looks as follows:
check before the run
hard_mask is in the 'auto' mode. hard_mask was set to: 1000
creat directories
commit input data
error, output file is empty data/evidence.gff error on call: /opt/ETP/bin/gmes/reformat_gff.pl --out data/evidence.gff --trace info/dna.trace --in /ocean/projects/tra180030p/ytekle/htefera/NCBI_Genome_Annotation/Mastigamoeba_balamuthi/braker/genemark_evidence.gff --quiet
I have seen the same issue posted on #290 from 2020, any suggestions on how to resolve this issue?
Thank you
This is a GeneMark-ETP issue. Please contact Alexandre Lomsadze and Mark Borodovsky at Georgia Tech via E-mail.
Hello @BioHlT did you end up finding a solution to this issue?
Best, Dustin
Hi, I have the same issue. Did any friend solve it?
Best, Fan
Figured out the issue, at least for me
The headers in the hints file only had the first word showing while the input fasta file headers had all the words with spaces in the header.
fixed it with a quick awk print
awk '{ print $1 }' input.fasta > input_headerfix.fasta
to only show the first words in the header of the input fasta file as well.