-
Notifications
You must be signed in to change notification settings - Fork 309
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
CLI component changes for new variant schema #100
CLI component changes for new variant schema #100
Conversation
…Vcf, and remove the implementation of ComputeVariants
One or more automated tests failed |
* @return GATK Variant context post conversion. | ||
*/ | ||
def convert(vc: ADAMVariantContext): VariantContext = { | ||
val variant: ADAMVariant = ADAMVariant.newBuilder |
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 diff is a little screwy here—this is the body of the convert(VariantContext): ADAMVariantContext/ADAMVariant method, correct?
Definitely. On Thu, Feb 13, 2014 at 1:18 PM, Frank Austin Nothaft <
|
@@ -28,7 +28,9 @@ object AdamMain extends Logging { | |||
PileupAggregator, | |||
ListDict, | |||
CompareAdam, | |||
ComputeVariants, | |||
/* TODO (nealsid): Reimplement in terms of new schema |
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.
Will this show up in a later PR?
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.
Yes! Or I can remove it if it's going to be replaced by your variant
calling work in the future.
On Fri, Feb 14, 2014 at 4:10 PM, Frank Austin Nothaft <
notifications@github.com> wrote:
In adam-cli/src/main/scala/edu/berkeley/cs/amplab/adam/cli/AdamMain.scala:
@@ -28,7 +28,9 @@ object AdamMain extends Logging {
PileupAggregator,
ListDict,
CompareAdam,
- ComputeVariants,
- /* TODO (nealsid): Reimplement in terms of new schema
Will this show up in a later PR?
—
Reply to this email directly or view it on GitHubhttps://github.com//pull/100/files#r9764053
.
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.
Nah! Just wanted to check.
Is it still necessary with the new schema? IIRC, in the current system, this is used for generating variants from genotypes; I'm not sure if this transformation makes sense with the new schema.
Jenkins, test this please. |
It is OK from my end. |
One or more automated tests failed |
@nealsid If you confirm that the failing test is expected, I'll go ahead and merge this. Looking forward to your follow-on work. |
@massie Thanks, these are expected. |
Thanks, Neal! |
CLI component changes for new variant schema
As in the other pull requests, this is a superset of the other commits and should decrease in size once those are merged. The commits meant to be reviewed in this PR are limited to the CLI changes for the new variant schema & changes.
Thanks!
Neal