-
Notifications
You must be signed in to change notification settings - Fork 7
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
Dev/feat/load data from archive #8
Merged
MTLehner
merged 38 commits into
rinikerlab:main
from
nmaeder:dev/feat/load-data-from-archive
Jun 26, 2024
Merged
Changes from 14 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
fb185f5
use correct type annotation (Path not str)
nmaeder 11b7fad
add git keep for data to be downloaded
nmaeder bf6a0fa
initial commit
nmaeder 6d82fa5
add function skeletons
nmaeder 8b351dc
more functionality added
nmaeder 631ab23
more exceptions for data setup
nmaeder c3c2835
formatting
nmaeder 3a2cf04
add functionality and tests
nmaeder a1eee7d
initial commit
nmaeder 338e70d
added sepearate tests directory with retrieve data tests and testfiles
nmaeder 6489db3
add tree types and tree factory
nmaeder 4b4b9df
formatting
nmaeder 377e12b
open for rist test by @MTLehner
nmaeder 89b4f77
cleanup paths and fix tests
nmaeder e0a8f8c
remove data fetch from setup
nmaeder 01b7ada
remove unused import
nmaeder 7ae4cab
fixed tree import and tree-file download
MTLehner 9cb902f
fix python 3.9 incompatible syntax
MTLehner 6f9c391
update README
MTLehner f5b0cfe
fix pre-commit
MTLehner 0b25c77
fix typo
MTLehner 1018336
fix table nameing
MTLehner 13dc907
remove last parts of versioneer
MTLehner 5d78517
remove last-last parts of versioneer
MTLehner ebceaea
thoroughly test retrieve_data
nmaeder 14e508e
remove pytorch channels
nmaeder f1e803a
run new tests too in ci
nmaeder 6115a55
change paths
nmaeder a4d21d9
add utils tests
nmaeder d7fddc1
add utils tests
nmaeder 6bbde08
run it on ci
nmaeder 47c25c8
formatting
nmaeder 60ab6e6
fist test
nmaeder 735a1e4
fix CI skipif condition
nmaeder be7b102
add tree_factory tests
nmaeder 9472c36
dont use setup.py for installing
nmaeder 25f8b0c
also add testfiles
nmaeder 4045261
pre-commit run
nmaeder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from pathlib import Path | ||
|
||
default_dash_tree_path = Path(__file__).parent / "default_dash_tree" | ||
additional_data_dir = Path(__file__).parent / "additional_data" | ||
dash_props_tree_path = additional_data_dir / "dashProps" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check notice
Code scanning / CodeQL
Empty except Note