Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add combosciplex #512

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/usage/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ pt.tl.cool_fancy_tool()
data.bhattacherjee
data.burczynski_crohn
data.chang_2021
data.combosciplex
data.cinemaot_example
data.datlinger_2017
data.datlinger_2021
data.dialogue_example
Expand Down
1 change: 1 addition & 0 deletions pertpy/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
burczynski_crohn,
chang_2021,
cinemaot_example,
combosciplex,
datlinger_2017,
datlinger_2021,
dialogue_example,
Expand Down
4 changes: 1 addition & 3 deletions pertpy/data/_dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from pathlib import Path
from random import choice
from string import ascii_lowercase
from typing import Union
from zipfile import ZipFile

import requests
Expand Down Expand Up @@ -64,5 +63,4 @@ def _download( # pragma: no cover
output_path = output_path or tempfile.gettempdir()
with ZipFile(download_to_path, "r") as zip_obj:
zip_obj.extractall(path=output_path)
extracted = zip_obj.namelist()
print(extracted)
zip_obj.namelist()
Loading
Loading