Skip to content

Commit

Permalink
fix(mi): no 95% CI with LongTR
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 21, 2024
1 parent f172a5e commit cebf778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strkit/mi/longtr.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def _get_sample_contigs(self) -> tuple[set, set, set]:
return self.get_contigs_from_files(self._mother_call_file, self._father_call_file, self._child_call_file)

def calculate_contig(self, contig: str) -> MIContigResult:
cr = MIContigResult(contig, includes_95_ci=True)
cr = MIContigResult(contig)

mvf = pysam.VariantFile(str(self._mother_call_file))
fvf = pysam.VariantFile(str(self._father_call_file))
Expand Down

0 comments on commit cebf778

Please sign in to comment.