Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

User-Provided BAM Files

Authors
Affiliations
Department of Biology, San Diego State University, San Diego, California, USA
Department of Biology, San Diego State University, San Diego, California, USA

SaVor supports using your own BAM files instead of generating them from FASTQ files. To use this feature:

  1. Add two new columns to your sample sheet (samples.csv):

    • bamPath: Full path to your BAM file

    • baiPath: Full path to your BAI file (index)

Example sample sheet with user-provided BAM files:

Run,BioSample,LibraryName,refGenome,refPath,bamPath,baiPath
SRR1945442,SAMN03326286,SAMN03326286,GCF_000001735.3,REFERENCE/TAIR10_REF.fna,/path/to/your/sample1.bam,/path/to/your/sample1.bam.bai
SRR1945443,SAMN03326287,SAMN03326287,GCF_000001735.3,REFERENCE/TAIR10_REF.fna,/path/to/your/sample2.bam,/path/to/your/sample2.bam.bai

When user-provided BAM files are detected, the workflow will:

  1. Skip the FASTQ download/ingestion steps

  2. Skip the read alignment steps

  3. Copy your BAM files to the workflow’s expected location (results/{refGenome}/bams/{sample}_final.bam)

  4. Use these copied BAM files for SV calling

Note:

 sambamba markdup -t 8 -p input.bam output.bam