1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#include "piler2.h"
static void WriteTRS(FILE *f, const PileData &Pile, int PileIndex)
{
int FamIndex = Pile.FamIndex;
assert(FamIndex >= 0);
int SuperFamIndex = Pile.SuperFamIndex;
assert(SuperFamIndex >= 0);
int ContigFrom;
const char *ContigLabel = GlobalToContig(Pile.From, &ContigFrom);
const int Length = Pile.To - Pile.From + 1;
const int ContigTo = ContigFrom + Length - 1;
const char Strand = Pile.Rev ? '-' : '+';
// GFF fields are:
// <seqname> <source> <feature> <start> <end> <score> <strand> <frame> [attributes] [comments]
// 0 1 2 3 4 5 6 7 8 9
fprintf(f, "%s\tpiler\ttrs\t%d\t%d\t0\t%c\t.\tFamily %d.%d ; Pile %d\n",
ContigLabel,
ContigFrom + 1,
ContigTo + 1,
Strand,
FamIndex,
SuperFamIndex,
PileIndex);
}
void WriteTRSFile(const char *OutputFileName, const PileData *Piles, int PileCount)
{
FILE *f = OpenStdioFile(OutputFileName, FILEIO_MODE_WriteOnly);
for (int PileIndex = 0; PileIndex < PileCount; ++PileIndex)
{
const PileData &Pile = Piles[PileIndex];
if (-1 == Pile.FamIndex)
continue;
WriteTRS(f, Pile, PileIndex);
}
fclose(f);
}
|