annotate process_radtags_rename.sh @ 1:228d0cbc14f9 draft default tip

planemo upload for repository https://github.com/kaktus42/galaxytools/tree/master/tools/stacks commit b7d7874d721ed5ac647eecf630b46deaae1a68f2-dirty
author avowinkel
date Mon, 29 Jun 2015 17:22:59 -0400
parents af879fc0d734
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
af879fc0d734 Uploaded
avowinkel
parents:
diff changeset
1 #!/bin/bash
af879fc0d734 Uploaded
avowinkel
parents:
diff changeset
2
af879fc0d734 Uploaded
avowinkel
parents:
diff changeset
3 EXT=$1
af879fc0d734 Uploaded
avowinkel
parents:
diff changeset
4
1
228d0cbc14f9 planemo upload for repository https://github.com/kaktus42/galaxytools/tree/master/tools/stacks commit b7d7874d721ed5ac647eecf630b46deaae1a68f2-dirty
avowinkel
parents: 0
diff changeset
5 mv output/*.discards output/discards.discards
0
af879fc0d734 Uploaded
avowinkel
parents:
diff changeset
6 mkdir splits
af879fc0d734 Uploaded
avowinkel
parents:
diff changeset
7 mv output/sample_* splits
af879fc0d734 Uploaded
avowinkel
parents:
diff changeset
8 #ls -lah output splits
af879fc0d734 Uploaded
avowinkel
parents:
diff changeset
9 for i in splits/*.fq; do mv "$i" "${i/.fq}".${EXT}; done