Skip to content

Commit a771381

Browse files
author
Jochen Singer
committed
[FIX] Fixed a whitespace character problem and did some minor changes.
1 parent edcab1a commit a771381

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

core/include/seqan/gff_io/gff_io_base.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,10 @@ _parseReadGffKeyValue(TValueString & outValue, TKeyString & key, TForwardIter &
331331
skipUntil(iter, NotFunctor<IsWhitespace>());
332332

333333
if (value(iter) == '=')
334+
{
334335
skipOne(iter);
336+
skipUntil(iter, NotFunctor<IsWhitespace>());
337+
}
335338

336339
if (value(iter) == '"')
337340
{
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ctg123 . mRNA 1300 9000 . + . ID=mrna0001;Name= "sonichedgehog;hehe"
2+
ctg123 . exon 1300 1500 . + . ID=exon00001;Parent= mrn a0001;Name
3+
ctg123 . exon 1050 1500 . + . ID=exon00002;Name;Parent=mrna0001
4+

0 commit comments

Comments
 (0)