Dear friends! I have to find in UCSC human genes that are transcribed by RNAP II and contain only 1 or 2 exons. Would you be so kind to help me to cope with this problem. Thanks!
Dear friends! I have to find in UCSC human genes that are transcribed by RNAP II and contain only 1 or 2 exons. Would you be so kind to help me to cope with this problem. Thanks!
Same as giovanni but from the command line:
curl "http://hgdownload.cse.ucsc.edu/goldenPath/hg18/database/knownGene.txt.gz" |\
gunzip -c |\
awk -F ' ' '{if($8=="1" || $8=="2") print; }'
It's very simple: go to UCSC-Table browser and select the table 'Known Genes'. on the same page, click on 'Filters' and you will arrive to a form where you can select genes which have a range of # of exons of your choice.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
btw, sorry: I've no idea about getting the information about the RNAPII....
thank you so much :)