Skip to content

Commit b62218e

Browse files
Merge pull request #413 from hyanwong/temporarily-undocument-fasta
Suppress mention of FASTA in docs
2 parents d332213 + c1c5c69 commit b62218e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

python/tskit/cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,9 @@ def get_tskit_parser():
189189

190190
parser = subparsers.add_parser(
191191
"fasta",
192-
help="Convert the tree sequence haplotypes to fasta format")
192+
# help="Convert the tree sequence haplotypes to fasta format")
193+
# suppress fasta visibility pending https://github.com/tskit-dev/tskit/issues/353
194+
help=argparse.SUPPRESS)
193195
add_tree_sequence_argument(parser)
194196
parser.add_argument(
195197
"--wrap", "-w", type=int, default=60,

python/tskit/trees.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3046,6 +3046,8 @@ def samples(self, population=None, population_id=None):
30463046
return samples
30473047

30483048
def write_fasta(self, output, sequence_ids=None, wrap_width=60):
3049+
""
3050+
# suppress fasta visibility pending https://github.com/tskit-dev/tskit/issues/353
30493051
"""
30503052
Writes haplotype data for samples in FASTA format to the
30513053
specified file-like object.

0 commit comments

Comments
 (0)