-
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
add BROADCAST tests and use 2bit reference from bucket #1806
Conversation
@@ -59,6 +59,10 @@ public void setTestVerbosity(){ | |||
public static final String publicTestDir = new File(gatkDirectory, publicTestDirRelative).getAbsolutePath() + "/"; | |||
public static final String publicTestDirRoot = publicTestDir.replace(publicTestDirRelative, ""); | |||
|
|||
public static final String GCS_b37_REFERENCE_2BIT = "gs://hellbender/test/resources/benchmark/human_g1k_v37.2bit"; | |||
public static final String GCS_b37_CHR20_21_REFERENCE_2BIT = "gs://hellbender/test/resources/human_g1k_v37.20.21.2bit"; | |||
public static final String GCS_b37_CHR17_1M_REFERENCE_2BIT = "gs://hellbender/test/resources/human_g1k_v37.chr17_1Mb.2bit"; |
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.
Is there a declaration in BaseTest
for our standard GCS bucket for testing (if not, can you please create one)? Also, I thought at some point we had switched to gs://gatk
or something similar -- can you check what other GCS-based tests are using, and make sure they're all consistent?
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.
done
Review complete, back to @akiezun for changes |
2681c7a
to
ceeb06d
Compare
back to @droazen - i addressed some comments. Reading from GSC fails for me and so the tests are disabled still. |
@@ -59,6 +59,11 @@ public void setTestVerbosity(){ | |||
public static final String publicTestDir = new File(gatkDirectory, publicTestDirRelative).getAbsolutePath() + "/"; | |||
public static final String publicTestDirRoot = publicTestDir.replace(publicTestDirRelative, ""); | |||
|
|||
public static final String GSC_GATK_TEST_RESOURCES = "gs://hellbender/test/resources/"; |
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.
GSC
-> GCS
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.
fixed
Back to @akiezun, merge after addressing comments and resolving conflicts with master. |
ceeb06d
to
7d47e98
Compare
7d47e98
to
ee484c7
Compare
extracted the parts of #1756 that are additions
@droazen please review