Skip to content

Commit

Permalink
addressed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jigold committed Aug 29, 2017
1 parent ee6527f commit 9601c23
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion python/hail/docs/representation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ representation

hail.representation.AltAllele
hail.representation.Call
hail.representation.ReferenceGenome
hail.representation.Genotype
hail.representation.Interval
hail.representation.Locus
hail.representation.Pedigree
hail.representation.ReferenceGenome
hail.representation.Struct
hail.representation.Trio
hail.representation.Variant
10 changes: 5 additions & 5 deletions python/hail/representation/genomeref.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class ReferenceGenome(HistoryMixin):
"""An object that represents a `reference genome <https://en.wikipedia.org/wiki/Reference_genome>`_.
"""An object that represents a `reference genome <https://en.wikipedia.org/wiki/Reference_genome>`__.
:param str name: Name of reference.
Expand Down Expand Up @@ -146,10 +146,10 @@ def par(self):
def contig_length(self, contig):
"""Contig length.
:param contig: Contig
:param contig: Contig.
:type contig: str
:return: Length of contig
:return: Length of contig.
:rtype: int
"""
return self._jrep.contigLength(contig)
Expand All @@ -160,7 +160,7 @@ def contig_length(self, contig):
def GRCh37(cls):
"""Reference genome for GRCh37.
Data from `GATK resource bundle <ftp://gsapubftp-anonymous@ftp.broadinstitute.org/bundle/b37/human_g1k_v37.dict>`_.
Data from `GATK resource bundle <ftp://gsapubftp-anonymous@ftp.broadinstitute.org/bundle/b37/human_g1k_v37.dict>`__.
>>> grch37 = ReferenceGenome.GRCh37()
Expand All @@ -174,7 +174,7 @@ def GRCh37(cls):
def GRCh38(cls):
"""Reference genome for GRCh38.
Data from `GATK resource bundle <ftp://gsapubftp-anonymous@ftp.broadinstitute.org/bundle/hg38/Homo_sapiens_assembly38.dict>`_.
Data from `GATK resource bundle <ftp://gsapubftp-anonymous@ftp.broadinstitute.org/bundle/hg38/Homo_sapiens_assembly38.dict>`__.
>>> grch38 = ReferenceGenome.GRCh38()
Expand Down

0 comments on commit 9601c23

Please sign in to comment.