-
Notifications
You must be signed in to change notification settings - Fork 597
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
Delete a lot of unused VCF constants #6361
Conversation
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.
These are all fine to delete since nothing calculates them, but some of them are good annotations that may return if I get a chance.
public static final String ORIGINAL_DP_KEY = "DP_Orig"; //SelectVariants | ||
public static final String DOWNSAMPLED_KEY = "DS"; |
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.
I have a branch where I hook this up so it actually works. It's pretty handy for debugging some types of things. If you want to delete it now in the case that I never merge that branch, that's fair.
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.
I'll leave this in.
@@ -26,60 +26,42 @@ | |||
public static final String AS_RAW_RMS_MAPPING_QUALITY_KEY = "AS_RAW_MQ"; | |||
public static final String AS_CULPRIT_KEY = "AS_culprit"; | |||
public static final String AS_VQS_LOD_KEY = "AS_VQSLOD"; | |||
public static final String ALLELE_BALANCE_HET_KEY = "ABHet"; | |||
public static final String ALLELE_BALANCE_HOM_KEY = "ABHom"; |
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.
These would be useful, but there's no code to generate them. You can delete them, but they're not bad annotations.
public static final String GQ_MEAN_KEY = "GQ_MEAN"; | ||
public static final String GQ_STDEV_KEY = "GQ_STDDEV"; | ||
public static final String HAPLOTYPE_SCORE_KEY = "HaplotypeScore"; | ||
public static final String HI_CONF_DENOVO_KEY = "hiConfDeNovo"; | ||
public static final String HOMOPOLYMER_RUN_KEY = "HRun"; |
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 TandemRepeat annotation will annotate repeat unit length one, right?
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, it does, so this is safe.
public static final String MAP_QUAL_RANK_SUM_KEY = "MQRankSum"; | ||
public static final String RAW_MAP_QUAL_RANK_SUM_KEY = "RAW_MQRankSum"; | ||
public static final String AS_MAP_QUAL_RANK_SUM_KEY = "AS_MQRankSum"; | ||
public static final String AS_RAW_MAP_QUAL_RANK_SUM_KEY = "AS_RAW_MQRankSum"; | ||
public static final String MENDEL_VIOLATION_LR_KEY = "MVLR"; |
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.
Was this from PhaseByTransmission? Alas, even after the entire duration of Laurent's postdoc, we still never got that code into GATK4.
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.
No idea.
cfbcf60
to
fb4ac13
Compare
fb4ac13
to
3da3b1d
Compare
Closes #5678.
@ldgauthier I was addressing #5678 and decided to continue cleaning house. Do you object to any of these? They are all unused.