Created
March 6, 2020 10:36
-
-
Save danielecook/86e9fb094c4b0f50861ab0eb3f7fab2a to your computer and use it in GitHub Desktop.
Generate chrom list
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
{ | |
for i in `seq 1 22`; | |
do echo ${i}; | |
done; | |
echo "X"; | |
echo "Y"; | |
echo "MT"; | |
} > names.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment