ncRNA mouse file from UCSC or other source
How can I get list of all mouse ncrna with there complete annotation and coordinates. Will UCSC browser be the best source, How should I get that list
• 2,369 views
•
link
1 answer
You can use the MySQL client:
$ mysql --user genome --host genome-mysql.cse.ucsc.edu -D mm9 -N -e "select chrom, txStart, txEnd, name, strand from refGene WHERE name like 'NR_%'" | sort-bed - > ncRNA.mm9.bed
If you're working with mm10:
$ mysql --user genome --host genome-mysql.cse.ucsc.edu -D mm10 -N -e "select chrom, txStart, txEnd, name, strand from refGene WHERE name like 'NR_%'" | sort-bed - > ncRNA.mm10.bed
Once you have BED files, you can use bedops or bedmap to relate ncRNAs to annotation tables from other sources.
• 0 views
•
link
Log in to answer this question.