Accessing and Reviewing Outputs

The recommended way to review LENS outputs is through the RAFT Output Viewer — an interactive web interface for exploring pMHC reports, QC metrics, and cohort comparisons.

Launching the viewer

After a LENS run completes:

raft generate-reports --project-id my-project-lens

A demonstration report is also available:

raft generate-reports --demo
screenshots/viewer_overview.png

Output directory structure

RAFT saves all outputs under the project’s outputs/ directory:

  • ``outputs/samples/`` — sample-level outputs (BAMs, VCFs, quantifications, etc.)

  • ``outputs/qc/`` — quality control summaries and metrics

  • ``outputs/reports/`` — Nextflow execution reports, traces, and timelines

  • ``outputs/lens/`` — the primary LENS report (*.report.tsv) and run QC summary (*.run_qc_summary.tsv)

Directory names map directly to manifest fields: Dataset/, Patient_Name/, and Run_Name/. Combined run directories (e.g., ad-123+nd-234/) represent outputs from paired or grouped inputs.

To find specific file types:

# VCF files
find outputs/ -name "*vcf*"
# BAM files
find outputs/ -name "*.bam"
# LENS reports
find outputs/ -name "*.report.tsv"