fn() getAutoSeqStreamFormatName
Returns the name of a stream file format.

Defined in <seqan/seq_io.h>
Signature TCString getAutoSeqStreamFormatName(autoSeqStreamFormat);

Parameters

autoSeqStreamFormat The AutoSeqStreamFormat object to get the format name from. Types: AutoSeqStreamFormat

Return Values

TCString char const * with the format name.

Detailed Description

Examples

// (Create RecordReader object recordReader with sequence file here).
AutoSeqStreamFormat formatTag;
if (checkFormat(recordReader, formatTag))
    std::cout << "File format is " << getAutoSeqStreamFormatName(formatTag) << '\n';

See Also