diff --git a/modules/io/doc/io.rst b/modules/io/doc/io.rst index 35e71011fc05d1acbf7831df4620a6c15d321b38..a00d8c38361a604da67c762d09c3bde140cb9e4a 100644 --- a/modules/io/doc/io.rst +++ b/modules/io/doc/io.rst @@ -236,6 +236,15 @@ Loading sequence or alignment files :exc:`~ost.io.IOException` if the import fails due to an erroneous or inexistent file. +.. function:: AlignmentFromString(data, format) +.. function:: SequenceFromString(data, format) +.. function:: SequenceListFromString(data, format) + + Load alignment, sequence or list of sequences from string. + + The format argument is mandatory. For a list of supported formats, + see :doc:`sequence_formats`. + Saving Sequence Data ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -278,6 +287,14 @@ Saving Sequence Data For a list of file formats supported by :func:`SaveAlignment` see :doc:`sequence_formats`. +.. function:: AlignmentToString(ali, format) +.. function:: SequenceToString(seq, format) +.. function:: SequenceListToString(seq_list, format) + + Return alignment, sequence or sequence list as a string. + + The format argument is mandatory. For a list of supported formats + see :doc:`sequence_formats`. .. _img-io: