bb0ba2f4936af96f32f4cbc01dfab0a8b0b957ea
braney
  Thu Feb 10 12:41:32 2022 -0800
more parameterization of knownGene build

diff --git src/hg/utils/otto/knownGene/copyFilesToAssembly.sh src/hg/utils/otto/knownGene/copyFilesToAssembly.sh
index 019a7ea..abc0744 100755
--- src/hg/utils/otto/knownGene/copyFilesToAssembly.sh
+++ src/hg/utils/otto/knownGene/copyFilesToAssembly.sh
@@ -1,6 +1,6 @@
 # expects one argument which is the list of tables
 for i in `cat $1`; 
 do 
-echo  "create table $i like knownGeneV38.$i;" 
-echo  "insert into $i select * from knownGeneV38.$i;" 
+echo  "create table $i like $2.$i;" 
+echo  "insert into $i select * from $2.$i;" 
 done