Created
January 21, 2013 15:54
-
-
Save pjbriggs/4587003 to your computer and use it in GitHub Desktop.
Example script for generating sequence alignment files (.nib) using faToNib submitted to a Grid Engine cluster
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/sh | |
# | |
# make_nibs.sh | |
# | |
chroms=`ls chr*.fa` | |
for chrom in $chroms; do | |
echo $chrom | |
nib=${chrom%.*}.nib | |
qsub -cwd -V -b y faToNib $chrom $nib | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment