Skip to content

Commit

Permalink
remove more \ in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
lill28 committed Oct 31, 2023
1 parent d3a7943 commit 69c7535
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions protzilla/data_analysis/protein_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def _longest_paths(protein_graph: nx.DiGraph, start_node: str):
n4
longest_paths: {n1: 0, n2: 3, n3: 5, n4: 5, n5: 6, __end__: 8}
:param protein_graph: Protein-Graph as created by ProtGraph \
:param protein_graph: Protein-Graph as created by ProtGraph
(-> _create_protein_variation_graph)
:type protein_graph: nx.DiGraph
:param start_node: Source of protein_graph
Expand Down Expand Up @@ -440,7 +440,7 @@ def _create_reference_sequence_index(
protein_path: str, k: int = 5
) -> tuple[dict, str, int]:
"""
Create mapping from kmer of reference_sequence of protein to starting position(s) \
Create mapping from kmer of reference_sequence of protein to starting position(s)
of kmer in reference_sequence
:param protein_path: Path to protein file from UniProt (.txt)
Expand Down
2 changes: 1 addition & 1 deletion protzilla/utilities/transform_dfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def long_to_wide(intensity_df: pd.DataFrame):
long format
:type intensity_df: pd.DataFrame
:return: returns dataframe in wide format suitable for use by\
:return: returns dataframe in wide format suitable for use by
packages such as sklearn
:rtype: pd.DataFrame
"""
Expand Down

0 comments on commit 69c7535

Please sign in to comment.