Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are many examples of command-processing scripts in bioinformatics: bwa, bowtie2, samtools, bedtools to name but a very few.

The step_01.sh Script

...

Code Block
languagebash
myvar="some text"
echo "$myvar"
echo '$myvar'

...

Functions

A bash function looks like this, with or without the function keyword.

...