annotate rgrnastar/prepStar.sh @ 0:52c43185e3f3 draft

initial commit
author fubar
date Fri, 09 Aug 2013 04:13:53 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
52c43185e3f3 initial commit
fubar
parents:
diff changeset
1 # automate their generation f
52c43185e3f3 initial commit
fubar
parents:
diff changeset
2 # from existing fasta genomes
52c43185e3f3 initial commit
fubar
parents:
diff changeset
3 INDEXROOT=/data/ucsc
52c43185e3f3 initial commit
fubar
parents:
diff changeset
4 # fix that
52c43185e3f3 initial commit
fubar
parents:
diff changeset
5 for genome in hg19 hg18 mm9 mm10 rn4 rn5
52c43185e3f3 initial commit
fubar
parents:
diff changeset
6 do
52c43185e3f3 initial commit
fubar
parents:
diff changeset
7 TARGET=${INDEXROOT}/${genome}/rnastar
52c43185e3f3 initial commit
fubar
parents:
diff changeset
8 mkdir -p $TARGET
52c43185e3f3 initial commit
fubar
parents:
diff changeset
9 cd $TARGET
52c43185e3f3 initial commit
fubar
parents:
diff changeset
10 STAR --runMode genomeGenerate --genomeDir $TARGET --genomeFastaFiles ${TARGET}/$genome.fa --runThreadN 4
52c43185e3f3 initial commit
fubar
parents:
diff changeset
11 done
52c43185e3f3 initial commit
fubar
parents:
diff changeset
12