BRAKER icon indicating copy to clipboard operation
BRAKER copied to clipboard

GeneMark-ETP crashes with an empty evidence.gff file

Open BioHlT opened this issue 1 year ago • 4 comments

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

BioHlT avatar Aug 18 '23 15:08 BioHlT

This is a GeneMark-ETP issue. Please contact Alexandre Lomsadze and Mark Borodovsky at Georgia Tech via E-mail.

KatharinaHoff avatar Aug 21 '23 14:08 KatharinaHoff

Hello @BioHlT did you end up finding a solution to this issue?

Best, Dustin

DustinSokolowski avatar Sep 14 '23 16:09 DustinSokolowski

Hi, I have the same issue. Did any friend solve it?

Best, Fan

lifan18 avatar Nov 19 '23 04:11 lifan18

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.

Artifice120 avatar May 16 '24 14:05 Artifice120