Skip to content

Instantly share code, notes, and snippets.

@danielecook
Created March 6, 2020 10:36
Show Gist options
  • Save danielecook/86e9fb094c4b0f50861ab0eb3f7fab2a to your computer and use it in GitHub Desktop.
Save danielecook/86e9fb094c4b0f50861ab0eb3f7fab2a to your computer and use it in GitHub Desktop.
Generate chrom list
{
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