Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
trichter committed Oct 1, 2024
1 parent 754c37c commit 2e832eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion anchorna/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def remove_contradicting_anchors(self, aggressive=True):

def convert2fts(self, **kw):
"""
Convert anchors to `~sugar.core.fts.FeatureList` object
Convert anchors to `~sugar.core.fts.FeatureList` object, see `.anchors2fts()`
"""
return anchors2fts(self, **kw)

Expand All @@ -293,6 +293,8 @@ def anchors2fts(anchors, mode=None):
Convert anchors to `~sugar.core.fts.FeatureList` object
Write some important attributes to ``Feature.meta._gff`` metadata.
:param mode: Optionally convert anchors to ``'nt'`` or ``'cds'`` indices
"""
from sugar import Feature, FeatureList
fts = []
Expand Down

0 comments on commit 2e832eb

Please sign in to comment.