# # A recipe demonstrating the use of parameters. # # # Access parameters. # echo "Instrument: pacbio" echo "Protocol: single" echo "Cutoff: 0.05" echo "Validate: True" echo "Read length: 250" # # The files to be used. # echo "Reads: Genome.fa" echo "SRR: SRR numbers.txt" # # Make a nested directory structure # mkdir -p data/store/ # # Create a few files. # cat Genome.fa | grep ">" > data/store/sequence-names.txt cat SRR numbers.txt > data/store/srr.txt # # Generate a table of contents. # find . -name '*' > contents.txt # # Print the contents to the screen # cat contents.txt