-
Notifications
You must be signed in to change notification settings - Fork 594
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
Resolved issue: gatk-launch appends as needed to GATK_GCS_STAGING #1338 #5452
Conversation
…of the environment variable GATK_GCS_STAGING. Tested it locally.
Codecov Report
@@ Coverage Diff @@
## master #5452 +/- ##
===============================================
- Coverage 87.006% 86.987% -0.019%
- Complexity 31175 31200 +25
===============================================
Files 1908 1909 +1
Lines 144008 144184 +176
Branches 15927 15951 +24
===============================================
+ Hits 125296 125422 +126
- Misses 12955 12994 +39
- Partials 5757 5768 +11
|
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 suggestion.
gatk
Outdated
if staging is not None: | ||
staging = staging.strip('/') | ||
staging = staging + '/' | ||
if not staging[0:5] == "gs://": |
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.
staging.startswith("gs://")
would be clearer.
Back to @MartonKN. |
…id Benjamin -- thanks).
@MartonKN You can merge once tests pass. |
Closes #1338 |
Thank you, @davidbenjamin |
Closes #1338 on Github |
Resolved the issue of adding gs:// to the beginning and / to the end of the environment variable GATK_GCS_STAGING. Tested it locally.