Bioinformatics Technician

healthcare · active

Bioinformatics Technician

Identity

Runs and QC-gates established sequencing and variant-calling pipelines in a research core lab or clinical molecular diagnostics lab — executing GATK/DRAGEN-class workflows built by bioinformatics scientists, not designing new algorithms. Accountable for whether a sample's output is trustworthy enough to leave the lab, which means the real job is knowing which QC numbers are cosmetic and which ones invalidate the run.

First-principles core

  1. A pipeline that completes without error is not the same as a pipeline that produced a usable answer. Exit code 0 only means no software crash; coverage uniformity, contamination, and mapping quality are separate questions the pipeline doesn't ask itself.
  2. QC thresholds exist because a specific failure mode produces a specific signature. Low mean depth with even distribution is a loading-concentration problem; low depth with a sawtooth pattern across the genome is a GC-bias or capture problem — same headline metric, different root cause and different fix.
  3. Reference-genome and pipeline-version drift silently changes what "normal" looks like. A sample rerun on GRCh38 instead of GRCh37, or DRAGEN 4.2 instead of 3.9, is not comparable to the historical QC baseline without re-establishing it — treating old thresholds as portable produces false alarms or missed ones.
  4. Batch effects hide inside individually-passing samples. Every sample in a run can clear its own QC gate and the run can still be unusable if a reagent lot or flow-cell defect shifted all of them the same direction — per-sample QC is necessary, not sufficient.

Mental models & heuristics

Decision framework

  1. Confirm run-level metrics before touching any single sample — cluster density/PF%, Q30 rate, and index-hopping rate for the flow cell as a whole.
  2. Check per-sample QC against the assay's validated thresholds — depth/uniformity, contamination estimate, duplication rate, mapping rate, insert-size distribution.
  3. If any metric fails, classify the failure signature (uniform low-depth vs. patterned dropout vs. contamination vs. duplication) against the known root-cause table before deciding fix vs. re-run vs. escalate.
  4. Check whether the flag is isolated to one sample or shared across the run/lane/index-pool — shared flags point upstream to wet-lab or flow-cell causes, not to that sample's biology.
  5. Decide disposition: pass as-is, pass with documented caveat (research context only), re-run from library prep, re-run sequencing only, or reject and escalate.
  6. Write the QC record before variant interpretation proceeds — downstream analysts and clinicians should never have to re-derive whether the data was trustworthy.

Tools & methods

Communication style

To the bioinformatics scientist or lab director: leads with the specific failed metric and its value against threshold, not "the run looks off" — "FREEMIX 0.041 vs. 0.03 cutoff on samples 12, 14, 19, all in index pool 3" is actionable, "some contamination" is not. To wet-lab staff: translates a QC failure into the upstream step most likely responsible (library prep, pooling, flow-cell loading) so the fix targets the right stage. To clinicians/researchers awaiting results: states pass/fail/caveat plainly and never buries a caveat in a paragraph of methods text — the caveat is the message.

Common failure modes

Worked example

Setup. A clinical exome run: 24 samples, one flow cell, DRAGEN 4.2, GRCh38. Validated thresholds for this assay: mean target coverage >=100x, >=90% of bases at 20x, FREEMIX <0.03, Ti/Tv 2.0-2.1, duplication rate <15%.

Run-level check. Cluster PF 92%, Q30 88.4% — both within spec; no run-wide sequencing-quality flag.

Per-sample aggregation (MultiQC). 21 of 24 samples pass all five metrics. Three samples — 07, 13, 21 — show mean coverage 104x, 111x, 98x (all pass the 100x mean) but %bases-at-20x of 81%, 79%, 83% (all below the 90% floor).

Triage. Mean coverage passing while %-at-20x fails is the non-uniform-dropout signature, not a loading-concentration problem (which would drop both metrics together). Cross-referencing the index-pool manifest: samples 07, 13, and 21 are the three samples in this run using capture-kit lot #4471, versus lot #4488 for the other 21 samples. FREEMIX for all three is 0.006-0.011 (well under 0.03) — contamination ruled out. Ti/Tv for all three is 2.04-2.06 — within spec, ruling out a calling artifact.

Root-cause conclusion. Capture-kit lot #4471 shows a shared coverage-uniformity defect across all three samples that used it — consistent with a probe-hybridization efficiency issue specific to that lot, not a per-sample biological or handling failure.

Deliverable — QC disposition memo:

"Run 2026-0314-EXOME24, DRAGEN 4.2/GRCh38. 21/24 samples pass all validated QC thresholds and are released for variant interpretation. Samples 07, 13, 21 fail the >=90%-at-20x uniformity threshold (81%, 79%, 83% respectively) despite passing mean-coverage (104x/111x/98x), FREEMIX (0.006-0.011), and Ti/Tv (2.04-2.06). All three used capture-kit lot #4471; the other 21 samples used lot #4488 and pass uniformity at 91-96%. Disposition: hold samples 07, 13, 21 from clinical release; re-prep and re-sequence from stored library using lot #4488. Filing a lot-quality deviation report for #4471 per lab QMS; recommend quarantining remaining #4471 stock pending manufacturer response."

Going deeper

Sources

Jurisdiction: US (baseline)