-
Notifications
You must be signed in to change notification settings - Fork 35
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
[FORMATS-114] Add processing description record. #134
[FORMATS-114] Add processing description record. #134
Conversation
Test PASSed. |
I'd like to hold on merging this until bigdatagenomics/adam#1520 is in decent shape, but please start reviewing. |
src/main/resources/avro/bdg.avdl
Outdated
@@ -87,6 +87,47 @@ record RecordGroupMetadata { | |||
union { null, int } predictedMedianInsertSize = null; | |||
union { null, string } platform = null; | |||
union { null, string } platformUnit = null; | |||
|
|||
/** | |||
The IDs of the processing steps that have been applied to this record group/ |
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.
record group/
→ record group.
src/main/resources/avro/bdg.avdl
Outdated
/** | ||
The IDs of the processing steps that have been applied to this record group/ | ||
*/ | ||
array<string> processingStepIds = []; |
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.
Since this *..*
association is between RecordGroupMetadata
, ProcessingStep
(, and later Sample
), all of which will not be large in number, why not have a direct reference instead of the id?
array<ProcessingStep> processingSteps = [];
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.
Yeah, I was on the hedge about this and could've gone either way. Since you prefer it this way, I'll change it to array<ProcessingStep>
.
src/main/resources/avro/bdg.avdl
Outdated
@@ -87,6 +87,47 @@ record RecordGroupMetadata { | |||
union { null, int } predictedMedianInsertSize = null; | |||
union { null, string } platform = null; | |||
union { null, string } platformUnit = null; | |||
|
|||
/** | |||
The IDs of the processing steps that have been applied to this record group/ |
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.
And as long as we're in here, please consider #137
3297887
to
ccbfe5a
Compare
Pushed fixed commits. |
Test PASSed. |
Thank you, @fnothaft |
Resolves #114.