view shell-script-template.sh @ 8:7c9170b7d9f6 draft

planemo upload commit 5b03cf1a31307c262701d4f267972bd01be24311
author mingchen0919
date Thu, 26 Apr 2018 13:38:15 -0400
parents c5c297020c36
children c0e57c994deb
line wrap: on
line source

# run SHELL_SCRIPT within tool outputs directory
cd ${REPORT_FILES_PATH}

#--------- index genome --------
# create genome directory for genome indexes
mkdir -p ${X_d}/genomeDir

cat >temp.sh <<EOF
STAR \\
  --runMode genomeGenerate \\
  --genomeDir ${X_d}/genomeDir \\
  --genomeFastaFiles $( echo ${X_A} | sed 's/,/ /g' ) \\
  --sjdbGTFfile ${X_B} \\
  --sjdbOverhang ${X_C} \\
  > /dev/null 2>&1
EOF

grep -v None temp.sh > index-genome.sh

# run star
sh index-genome.sh

#---- mapping ---------
cat >temp.sh <<EOF
STAR \\
  --genomeDir ${X_d}/genomeDir \\
  --readFilesIn \\
  ${X_F} \\
  ${X_R} \\
  > /dev/null 2>&1
EOF

grep -v None temp.sh > mapping.sh

# run mapping
sh mapping.sh

# remove temp.sh
rm temp.sh

#----- SAM to sorted BAM ------
echo "samtools sort -o Aligned.out.sorted.bam Aligned.out.sam" > sam2bam.sh
sh sam2bam.sh

#----- evaluate mapping -------
echo "samtools flagstat Aligned.out.sorted.bam > flagstat.txt" > flagstat.sh
sh flagstat.sh