Skip to content

Commit

Permalink
Merge pull request #1 from buschlab/rel6_minor_fixes
Browse files Browse the repository at this point in the history
Rel6 minor fixes
  • Loading branch information
nr23730 authored Feb 23, 2024
2 parents fdc3ef6 + f424de5 commit a646110
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export interface IMtb {
geneticCounselingRecommendation: boolean;
rebiopsyRecommendation: boolean;
generalRecommendation: string;
diagnosis: string;
date: string;
mtbState: MtbState;
samples: string[];
Expand Down
1 change: 0 additions & 1 deletion src/pages/patientView/therapyRecommendation/MtbTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,6 @@ export default class MtbTable extends React.Component<IMtbProps, IMtbState> {
geneticCounselingRecommendation: false,
rebiopsyRecommendation: false,
therapyRecommendations: [],
diagnosis: '',
date: now.toISOString().split('T')[0],
mtbState: Object.keys(MtbState).find(
key =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ export class TherapyRecommendationFormAlterationInput extends React.Component<
mutation.referenceAllele +
',' +
mutation.variantAllele;
const annotation = this.props.indexedVariantAnnotations![index];
const myVariantInfo = this.props.indexedMyVariantInfoAnnotations![
index
];
const annotation = this.props.indexedVariantAnnotations
? this.props.indexedVariantAnnotations[index]
: undefined;
const myVariantInfo = this.props.indexedMyVariantInfoAnnotations
? this.props.indexedMyVariantInfoAnnotations[index]
: undefined;
let dbsnp;
let clinvar;
let cosmic;
Expand Down

0 comments on commit a646110

Please sign in to comment.