-
Notifications
You must be signed in to change notification settings - Fork 16
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
Adding ISA-JSON support as input file. #88
Merged
Merged
Changes from 61 commits
Commits
Show all changes
63 commits
Select commit
Hold shift + click to select a range
97d7fda
Initial push of the ISA JSON parser app
572c49b
Updated isa_study.py:
72e3c56
Update test file.
511e0f7
Add method to dump object in a pandas DataFrame and renamed to Ena Ob…
89675d6
Update EnaStudy:
8ec21fd
Add other Classes
057df1f
Replaced test ISA Json by one without pooled samples
8838c9e
Add additional objects
0137052
Updated validation
6493e4e
Implementation of the Ena Samples functionality
88de533
remove init file
b1f4c94
Add documentation
dc2d2ed
- Implement Submission wrapper object
2ff3ca1
Add Test Class for Ena Study
1a5cbff
Renamed read-isa-json folder
60fd7e1
Add init file to the tests folder
15702ec
Fix failing tests
76c8ae6
Rename test file to accomodate other class objects
138c596
Add test for reading an ISA JSON and producing studies
eb9eed3
Delete read_isa_json folder and move example script
b0cd314
Worked on parsing experiment data for ENA submissions
fa4f66d
Implement exporting to dataframe
479c95a
Change alias prefix of experiments to the samples url. Makes more sense?
1645248
Get sample alias out of the list
f19d07d
Implementation of Ena Runs
2baec94
Implement Submission
3426dcf
Cleaning up classes
3a4b4ef
Implement Characteristic class for Ena Sample
6e8c400
Clean up example script
766246a
Move clip_off_prefix to the common ena_std_lib module.
9e009bd
Annotation of the classes and modules
27abbde
Remove unused imports
1839994
Fix typo
40ccb57
Implementation of assay streams for ena runs
57b04a3
Rearranged EnaSubmission
eb10676
Prefix is fetched from custom metadata
ce88034
Sanitize samples + fix sample_alias in experiments
a5431e3
clean up
a590710
Replace simple dictionary validation by extensive JSON schema validation
650a4b1
Replace script by jupyter notebook
62dd1df
Restructure isa json support (#1)
bedroesb 5e29034
specify pytest version
bedroesb fcd6fa7
Upload simple test case ISA JSON
13ac7d2
Fix simple test case
25462ed
Fix experiment alias in runs table
298d4eb
Make run alias the process id instead of sample id for sequencing dat…
5883f7c
Fixed typo in example data
46b9afe
Adapt `get_parameter_values` for multi-output process
e9b913d
Move `get_parameter_values` and `fetch_parameters` to shared ena_std_lib
cafcaad
Implementation of ParameterValues for samples
6e5e393
Replace NaN in dataframes by empty string
addc64d
Remove example python notebook
kdp-cloud 02a6cb8
attempt to fix the setup.py
bedroesb f40f51d
raise error when assay stream is not present
bedroesb 7fcc93b
some typos
bedroesb bf3b20c
no receipt
bedroesb c16bf00
Merge branch 'master' of github.com:usegalaxy-eu/ena-upload-cli into dev
bedroesb 81c601e
new version
bedroesb 3a0f27d
update documentation
bedroesb 574b857
doc
bedroesb 2a4d9a8
add isa_json
bedroesb c6503de
use with statement
bedroesb abf7b73
fix example
bedroesb 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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
.secret.yml | ||
build/ | ||
ena_upload_cli.egg-info/ | ||
ena_upload/__pycache__/ | ||
__pycache__/ |
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
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 +1 @@ | ||
__version__ = "0.6.4" | ||
__version__ = "0.7.0" |
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
Empty file.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the file handle is here kept open, maybe use a
with open
statement?