#load package
devtools::load_all('/gpfs42/robbyfs/scratch/lab_lpasquali/msubirana/marc/repos/DNAseqPipeline')
#parse arguments
args <- base::commandArgs(trailingOnly = TRUE)
#define variables
bam <- args[1]
ref <- args[2]
out_dir <- args[3]
threads <- parallel::detectCores()
#realign BAMs using DNAseqPipeline::realignBwa
realignBwa(bam=bam,
ref=ref,
out_dir=out_dir,
threads=threads)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.