4ef472a0cd3441f7b6f490c8651b9975c5946830 braney Mon Aug 23 15:15:54 2021 -0700 polishing up the VM27 release of knownGene diff --git src/hg/utils/otto/knownGene/copyFilesToAssembly.sh src/hg/utils/otto/knownGene/copyFilesToAssembly.sh new file mode 100644 index 0000000..24c8c91 --- /dev/null +++ src/hg/utils/otto/knownGene/copyFilesToAssembly.sh @@ -0,0 +1,6 @@ +# expects one argument which is the list of tables +for i in `cat $1`; +do +echo "create table $i like knownGeneVM27.$i;" +echo "insert into $i select * from knownGeneVM27.$i;" +done