20 lines
365 B
Bash
Executable File
20 lines
365 B
Bash
Executable File
thread=32
|
|
|
|
make -j 16
|
|
|
|
n1=~/data/dataset/D2/n1.fq.gz
|
|
n2=~/data/dataset/D2/n2.fq.gz
|
|
|
|
reference=~/data/reference/fmt/human_g1k_v37_decoy.fasta
|
|
|
|
#out=/dev/null
|
|
out=./D2-out.sam
|
|
prog=./fastalign
|
|
#prog=/home/zzh/fastbwa
|
|
|
|
time $prog mem -t $thread -M -R @RG\\tID:normal\\tSM:normal\\tPL:illumina\\tLB:normal\\tPG:bwa \
|
|
$reference \
|
|
$n1 \
|
|
$n2 \
|
|
-o $out -2
|