Skip to content
Snippets Groups Projects
Commit e473cd52 authored by nfontrod's avatar nfontrod
Browse files

src/hic_TAD_caller/create_TAD_HiC_files/calling_tads.py: fix test of add_cell_column function

parent 14c1c93e
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,8 @@ def add_cell_column(exp_table: pd.DataFrame) -> pd.DataFrame:
:return: The exp_table with a column cell.
>>> d = read_hic_url_content()
>>> add_cell_column(d)["cell"].to_list()
>>> add_cell_column(d)["cell"].to_list()[0:5]
['K652', 'K652', 'HeLa', 'HeLa', 'HeLa']
"""
cell_list = []
cell_selected = ["K562", "HepG2", "HeLa"]
......
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