Entering edit mode
8.0 years ago
jfertaj
▴
110
Hi, I have a really silly question but my brain is a bit lazy today, and google is not helping at all. I want to retrieve, using a mysql query, genomic coordinates from a list of genes, I already have the query to get the information I want:
mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A -D hg19 -P 3306 -e "select chrom,txStart,txEnd,name2 as name,strand,exonStarts,exonEnds from refGene;"
However how I use my file gene.list
as an input to the mysql query?