15 lines
414 B
Bash
15 lines
414 B
Bash
|
|
thread=32
|
||
|
|
n_r1=~/fastq/na12878/na12878_r1.fq
|
||
|
|
n_r2=~/fastq/na12878/na12878_r2.fq
|
||
|
|
#n_r1=~/fastq/ZY2105177532213010_L4_1.fq
|
||
|
|
#n_r2=~/fastq/ZY2105177532213010_L4_2.fq
|
||
|
|
reference=~/reference/ert/human_g1k_v37_decoy.fasta
|
||
|
|
out=/dev/null
|
||
|
|
time /home/zzh/work/ert-bwa-mem2/bwa-mem2 mem -t $thread -M -R @RG\\tID:normal\\tSM:normal\\tPL:illumina\\tLB:normal\\tPG:bwa \
|
||
|
|
-Z $reference \
|
||
|
|
$n_r1 \
|
||
|
|
$n_r2 \
|
||
|
|
-o $out
|
||
|
|
|
||
|
|
|