Closed anya-pavlova closed 2 days ago
How did you create the fasta file?
Using the reference file for the WGS/WES data as an example, the header in the fasta file should be something like:
>HLA-A*01:01:01:01 8 50 122 253 522 764 1039 1441 1716 1819 1935 2337 2369 2512 2559 2729 2733
After the allele, the first number is the number of exons, and then pairs of number on the fasta sequences corresponds to one exon ([start,end], 0-based coordinate). That's also the reason the loop starts at 1.
Hi,
I tried to launch T1K on my data, but got segfault with the following trace
As I understand from the source code, T1K expects that a reference FASTA file will contain exons in the metadata lines. But metadata lines in my FASTA files look like that
I think that what is causing segfault
What is an expected format for metadata lines in FASTA files for T1K?
Also I am very curious about this loop. Why does it start with 1 and not 0? And it seems that it also assumes that
size
is odd (otherwise there will be read out of bounds). Is that something expected?Thank you in advance