You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After fining out that we were submitting incorrect MAF formatted variants for the ERBB2 and EGFR insertions, I realized it would be easy to catch this in validation with some simple rules about the ref and alt allele that would force the correct MAF format for insertions as well as deletions:
Pseudo Code for test:
ValidateInsertion: If mutation.is_insertion: require(Reference_Allele=='-')
ValidateDeletion: If mutation.is_deletion: require(Tumor_Seq_Allele2="-")
The text was updated successfully, but these errors were encountered:
After fining out that we were submitting incorrect MAF formatted variants for the ERBB2 and EGFR insertions, I realized it would be easy to catch this in validation with some simple rules about the ref and alt allele that would force the correct MAF format for insertions as well as deletions:
https://docs.gdc.cancer.gov/Data/File_Formats/MAF_Format/
Pseudo Code for test:
ValidateInsertion: If mutation.is_insertion: require(Reference_Allele=='-')
ValidateDeletion: If mutation.is_deletion: require(Tumor_Seq_Allele2="-")
The text was updated successfully, but these errors were encountered: