-
Notifications
You must be signed in to change notification settings - Fork 311
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
[ADAM-1939] Allow validation stringency to waive off FLAG arrays. #1940
Conversation
2 similar comments
Test PASSed. |
@@ -482,14 +489,14 @@ class ADAMContextSuite extends ADAMFunSuite { | |||
sparkTest("load vcf with a glob") { | |||
val path = testFile("bqsr1.vcf").replace("bqsr1", "*") | |||
|
|||
val vcs = sc.loadVcf(path) | |||
val vcs = sc.loadVcf(path, stringency = ValidationStringency.LENIENT) |
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.
Sorry to be a pain, could test files that are invalid be moved to a subdirectory so that the glob doesn't pick them up?
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.
+1, SGTM
7a7eae6
to
93b2510
Compare
Test PASSed. |
Thank you, @fnothaft |
Resolves #1939.