ncRNA mouse file from UCSC or other source
1
1
Entering edit mode
9.0 years ago
kanwarjag ★ 1.2k

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

ncRNA mouse • 1.9k views
ADD COMMENT
1
Entering edit mode
9.0 years ago

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.

ADD COMMENT

Login before adding your answer.

Traffic: 2572 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6