This function calls structural variants in a pair of tumor-normal matched samples pairs using svaba in parallel
1 2 3 4 5 6 7 8 9 10 11 12 13 | call_sv_svaba_parallel(
bin_path = "tools/svaba/bin/svaba",
targets = "",
bam_dir = "",
patient_id = "",
germ_pattern = "GL",
ref_genome = "",
jobs = 3,
threads = 1,
par_type = "Joint",
verbose = FALSE,
output_dir = ""
)
|
bin_path |
REQUIRED Path to svaba binary executable. Default path tools/svaba/svaba. |
targets |
OPTIONAL BED file with capture target regions. |
bam_dir |
REQUIRED Path to bam files. |
patient_id |
REQUIRED Patient ID patter to filter samples with. |
germ_pattern |
OPTIONAL Patient ID pattern to filter samples with. |
ref_genome |
REQUIRED Germline pattern to filter samples with |
jobs |
OPTIONAL Number of paired jobs to run. Only when par_type is Paired. Default 3. |
threads |
OPTIONAL Number of threads to use per job. Default 1. |
par_type |
OPTIONAL Parallelization type. Joint: Runs a single job with multiple samples jointly | Paired: Runs a pair of tumor-normal through multiple jobs. |
verbose |
OPTIONAL Enables progress messages. Default False. |
output_dir |
OPTIONAL Path to the output directory. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.