Skip to content
Snippets Groups Projects
Commit 338f5c8c authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

correct parameter name in read_dataframe_and_stringize()

parent ffbd17ef
No related branches found
No related tags found
No related merge requests found
......@@ -182,15 +182,15 @@ def create_worktable_file(phenotype_ids: List[str], init_file_path: str, project
format='table', data_columns=True) # Summary Table (contigency table)
hdf_work.close()
def read_dataframe_and_stringize(hdf_path: str, frame: str):
def read_dataframe_and_stringize(project_hdf_path: str, frame: str):
"""
Read a dataframe from a worktable file and reformat Region and Chromosome
numbers as strings.
This will eventually be deprecated once the js code accepts integers instead
of strings
:param hdf_path: path to the worktable file
:type hdf_path: str
:param project_hdf_path: path to the worktable file
:type project_hdf_path: str
:param frame: name of the frame to be read
:type frame: str
:return: The dataframe with converted Region and CHR columns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment