-
Notifications
You must be signed in to change notification settings - Fork 596
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
Vs 822 Add documentation for the work that we did on the latest iteration of Delta #8205
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## ah_var_store #8205 +/- ##
================================================
Coverage ? 83.980%
Complexity ? 34807
================================================
Files ? 2194
Lines ? 167039
Branches ? 18004
================================================
Hits ? 140279
Misses ? 20533
Partials ? 6227 |
pip install --force-reinstall hail==0.2.109gi | ||
python3 | ||
|
||
import hail as hl |
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.
hl.init(tmp_dir='...')
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.
this isn't where I want this though, is it?
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.
All of our Hail scripts should do a hl.init(tmp_dir="...")
before invoking any other Hail functions, so this would seem to be the spot for that.
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.
can I just set it to this?:
hl.init(tmp_dir='gs://fc-secure-fb908548-fe3c-41d6-adaf-7ac20d541375/temp/')
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.
if that's the workspace bucket I think that should be fine
Co-authored-by: Miguel Covarrubias <[email protected]>
|
||
## Validate it to ensure that it is ready to be shared | ||
|
||
Copy the [VDS Validation python script](vds_validation.py) to the notebook environment |
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.
nit
Copy the [VDS Validation python script](vds_validation.py) to the notebook environment | |
Copy the [VDS Validation python script](vds_validation.py) to the notebook environment. |
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.
one more nit, otherwise 👍🏻
pip install --force-reinstall hail==0.2.109 | ||
python3 | ||
|
||
>>> import hail as hl |
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.
>>> import hail as hl | |
>>> import hail as hl | |
>>> hl.init(tmp_dir='gs://fc-secure-fb908548-fe3c-41d6-adaf-7ac20d541375/hail_temp') |
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.
Approved with the inclusion of hl.init(tmp_dir='gs://blah/...')
This includes:
Bonus:
a validation script for the VDS itself