[Seqan-dev] String of SeqFileOut
- From: Alexander Vowinkel <vowinkel.alexander@gmail.com>
- To: seqan-dev@lists.fu-berlin.de
- Date: Fri, 29 May 2015 16:35:44 -0500
- Reply-to: SeqAn Development <seqan-dev@lists.fu-berlin.de>
- Subject: [Seqan-dev] String of SeqFileOut
Hi,
I want to store some SeqFileOut in a seqan::String.
I tried both:
Using a seqan::String<seqan::SeqFileOut>
and unsing a seqan::String<seqan::SeqFileOut *>
Both fails. I don't understand why.
Can someone help me with this?
Now I'm using std::vector<seqan::SeqFileOut *> which
does the job, but I'd like to use this as a Property Map
for a Graph which needs to be a String if I got that right.
Thanks!
Alexander
int main()
{
typedef seqan::SeqFileOut TFilePointer;
typedef seqan::String<TFilePointer> TFilePointerSet;
TFilePointerSet files;
seqan::SeqFileIn inputFile1;
append(files, inputFile1);
seqan::SeqFileIn inputFile2;
append(files, inputFile2);
return 0;
}
- Follow-Ups:
- Re: [Seqan-dev] String of SeqFileOut
- From: Rahn, René <rene.maerker@fu-berlin.de>
- Re: [Seqan-dev] String of SeqFileOut
-
seqan-dev - May 2015 - Archives indexes sorted by:
[ thread ] [ subject ] [ author ] [ date ] - Complete archive of the seqan-dev mailing list
- More info on this list...