src/utils/qa/getSplit.csh 1.12
1.12 2009/05/13 00:02:50 kuhn
reset to accept hgwbeta as input. dropped machineName checking as redundant. thanks, brooke
Index: src/utils/qa/getSplit.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/getSplit.csh,v
retrieving revision 1.11
retrieving revision 1.12
diff -b -B -U 4 -r1.11 -r1.12
--- src/utils/qa/getSplit.csh 12 May 2009 23:49:32 -0000 1.11
+++ src/utils/qa/getSplit.csh 13 May 2009 00:02:50 -0000 1.12
@@ -19,9 +19,9 @@
echo
echo " determines if table is in split format "
echo " and returns split name if so."
echo
- echo " usage: db tablename [hgwdev | hgsqlbeta]"
+ echo " usage: db tablename [hgwdev | hgwbeta]"
echo
echo " third argument accepts machine, defaults to hgwdev"
echo
exit
@@ -36,9 +36,9 @@
endif
# assign command line arguments
if ( $#argv == 3 ) then
- if ( $argv[3] == "hgsqlbeta" ) then
+ if ( $argv[3] == "hgwbeta" ) then
set machine="$argv[3]"
set host="-h $sqlbeta"
else
if ( $argv[3] != "hgwdev" ) then
@@ -52,17 +52,8 @@
# echo "tablename = $tablename"
# echo "machine = $machine"
# echo "host = $host"
-# check machine validity
-
-checkMachineName.csh $machine
-if ( $status ) then
- echo "${0}:"
- $0
- exit 1
-endif
-
# -------------------------------------------------
# get all assemblies containing $tablename
set chrom=""