Subject: [Seqan-dev] Getting a sequence as a char *
Hi, I'm just getting started with SeqAn (and C++), so I'm sure I'm missing something simple here.
I've
got a multiple sequence alignment working and producing an
Align<String<Dna5> > object. Now all I need is to return the
aligned sequences (with gaps) as C strings (char *) from the function.
It
seems like a simple thing, but after hours reading through the
documentation of all the types and functions (and yes, Language Entity
Types), I can't find the path from Align to char *.
I found toCString(), but it takes a String, and I don't know how to get (gapped) Strings out of an Align.
Thank you for any help, and hopefully I'm able to make use of this great library!