Skip to content

Commit

Permalink
Update src/bio2bel_kegg/models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Nov 13, 2018
1 parent 72cb581 commit fe67730
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/bio2bel_kegg/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def serialize_to_pathway_node(self) -> pybel.dsl.BiologicalProcess:
)

def get_gene_set(self) -> Set['Protein']:
"""Return the genes associated with the pathway (gene set). Note this function restricts to HGNC symbols genes."""
"""Return the genes associated with the pathway (gene set).
Note this function restricts to HGNC symbols genes."""
return {
protein.hgnc_symbol
for protein in self.proteins
Expand Down

0 comments on commit fe67730

Please sign in to comment.