src/hg/utils/automation/doCpgIslands.pl 1.2
1.2 2009/03/13 22:27:12 hiram
eliminate the duplicate hiveDataGenomes specification, been fixed elsewhere
Index: src/hg/utils/automation/doCpgIslands.pl
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/utils/automation/doCpgIslands.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 4 -r1.1 -r1.2
--- src/hg/utils/automation/doCpgIslands.pl 4 Dec 2008 06:38:42 -0000 1.1
+++ src/hg/utils/automation/doCpgIslands.pl 13 Mar 2009 22:27:12 -0000 1.2
@@ -33,9 +33,9 @@
# Option defaults:
my $dbHost = 'hgwdev';
my $defaultWorkhorse = 'kolossus';
-my $maskedSeq = "$HgAutomate::hiveDataGenomes/\$db/\$db.2bit";
+my $maskedSeq = "$HgAutomate::clusterData/\$db/\$db.2bit";
my $base = $0;
$base =~ s/^(.*\/)?//;
@@ -49,9 +49,9 @@
";
print STDERR $stepper->getOptionHelp();
print STDERR <<_EOF_
-buildDir dir Use dir instead of default
- $HgAutomate::hiveDataGenomes/\$db/$HgAutomate::trackBuild/cpgIslands
+ $HgAutomate::clusterData/\$db/$HgAutomate::trackBuild/cpgIslands
(necessary when continuing at a later date).
-maskedSeq seq.2bit Use seq.2bit as the masked input sequence instead
of default ($maskedSeq).
_EOF_
@@ -66,14 +66,14 @@
makeBed: Transform output from cpglh.exe into cpgIsland.bed
load: Load cpgIsland.bed into \$db.
cleanup: Removes hard-masked fastas and output from cpglh.exe.
All operations are performed in the build directory which is
-$HgAutomate::hiveDataGenomes/\$db/$HgAutomate::trackBuild/cpgIslands unless -buildDir is given.
+$HgAutomate::clusterData/\$db/$HgAutomate::trackBuild/cpgIslands unless -buildDir is given.
";
# Detailed help (-help):
print STDERR "
Assumptions:
-1. $HgAutomate::hiveDataGenomes/\$db/\$db.2bit contains RepeatMasked sequence for
+1. $HgAutomate::clusterData/\$db/\$db.2bit contains RepeatMasked sequence for
database/assembly \$db.
" if ($detailed);
print "\n";
exit $status;
@@ -245,11 +245,11 @@
#$opt_verbose = 3 if ($opt_verbose < 3);
# Establish what directory we will work in.
$buildDir = $opt_buildDir ? $opt_buildDir :
- "$HgAutomate::hiveDataGenomes/$db/$HgAutomate::trackBuild/cpgIslands";
+ "$HgAutomate::clusterData/$db/$HgAutomate::trackBuild/cpgIslands";
$maskedSeq = $opt_maskedSeq ? $opt_maskedSeq :
- "$HgAutomate::hiveDataGenomes/$db/$db.2bit";
+ "$HgAutomate::clusterData/$db/$db.2bit";
# Do everything.
$stepper->execute();