char* gbFaGetSeq(struct gbFa *fa)
/* Get the sequence for the current record, reading it if not already
 * buffered */
{
if (fa->seq == NULL)
    faReadSeq(fa);
return fa->seq;
}
Esempio n. 2
0
struct dnaSeq *faReadAa(char *fileName)
/* Open fa file and read a peptide single sequence from it. */
{
return faReadSeq(fileName, FALSE);
}
Esempio n. 3
0
struct dnaSeq *faReadDna(char *fileName)
/* Open fa file and read a single nucleotide sequence from it. */
{
return faReadSeq(fileName, TRUE);
}