FastAFormatterFormat Method (Stream, IEnumerableISequence) |
Writes the Multiple sequence in FastA format to the file.
Note that if the sequence contains more than the MaxSymbolsAllowedPerLine
value then it will split the symbols in the specified sequence in to multiple lines,
where each line will contain maximum of MaxSymbolsAllowedPerLine symbols.
Namespace: Bio.IO.FastAAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public void Format(
Stream stream,
IEnumerable<ISequence> sequences
)
Public Sub Format (
stream As Stream,
sequences As IEnumerable(Of ISequence)
)
public:
virtual void Format(
Stream^ stream,
IEnumerable<ISequence^>^ sequences
) sealed
abstract Format :
stream : Stream *
sequences : IEnumerable<ISequence> -> unit
override Format :
stream : Stream *
sequences : IEnumerable<ISequence> -> unit
Parameters
- stream
- Type: System.IOStream
Stream to write to, it will be closed at the end. - sequences
- Type: System.Collections.GenericIEnumerableISequence
Sequences to write.
Implements
IFormatterTFormat(Stream, IEnumerableT)See Also