Skip to content

Commit

Permalink
docstring style change
Browse files Browse the repository at this point in the history
  • Loading branch information
carlomazzaferro committed Mar 16, 2018
1 parent 04d15a3 commit 410939c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions VAPr/vapr_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def num_records(self):
"""
Number of records in MongoDB collection
:return: Number of records in MongoDB collection
Returns
(int) Number of records in MongoDB collection
:rtype: int
"""
Expand All @@ -82,11 +83,11 @@ def get_rare_deleterious_variants(self, sample_names_list=None):
"""
See :ref:`rare-del-variants` for more information on how this is implemented
:param sample_names_list: list of samples to draw variants from
:type sample_names_list: list
Args:
sample_names_list (list): list of samples to draw variants from
:return: list of variants
:rtype: list
Returns
list of variants (list)
"""

return self._get_filtered_variants_by_sample(VAPr.filtering.make_rare_deleterious_variants_filter,
Expand Down

0 comments on commit 410939c

Please sign in to comment.