This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| set -u | |
| set -o pipefail | |
| # A script to subsample Fasta/FastQ files using Seqtk | |
| if ! `command -v seqtk > /dev/null 2> /dev/null` | |
| then | |
| echo "Failed to find seqtk!" |