mysql command to download mm9 Mappability tables from Mapping and Sequencing
1
2
Entering edit mode
7.1 years ago
Shicheng Guo ★ 9.4k

Hi All,

Anyone can share the mysql command to download 'Mappability' tables from 'Mapping and Sequencing' group?

check the link of 'Mappability'

Sincerely,

mapping and sequencing mappability • 1.3k views
ADD COMMENT
1
Entering edit mode
7.1 years ago
$ mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A -D hg19 -e 'show tables like "%ability%"'
+------------------------------------------+
| Tables_in_hg19 (%ability%)               |
+------------------------------------------+
| wgEncodeCrgMapabilityAlign100mer         |
| wgEncodeCrgMapabilityAlign24mer          |
| wgEncodeCrgMapabilityAlign36mer          |
| wgEncodeCrgMapabilityAlign40mer          |
| wgEncodeCrgMapabilityAlign50mer          |
| wgEncodeCrgMapabilityAlign75mer          |
| wgEncodeDacMapabilityConsensusExcludable |
| wgEncodeDukeMapabilityRegionsExcludable  |
| wgEncodeDukeMapabilityUniqueness20bp     |
| wgEncodeDukeMapabilityUniqueness35bp     |
+------------------------------------------+

.

$ mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A -D hg19 -e 'desc wgEncodeDukeMapabilityUniqueness35bp'
+----------+--------------+------+-----+---------+-------+
| Field    | Type         | Null | Key | Default | Extra |
+----------+--------------+------+-----+---------+-------+
| fileName | varchar(255) | NO   |     | NULL    |       |
+----------+--------------+------+-----+---------+-------+

it's just a path to a bigwig file in the UCSC server

$ mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A -D hg19 -e 'select * from wgEncodeDukeMapabilityUniqueness35bp'
+------------------------------------------------------------+
| fileName                                                   |
+------------------------------------------------------------+
| /gbdb/hg19/bbi/wgEncodeDukeMapabilityUniqueness35bp.bigWig |
+---------

---------------------------------------------------+

the public file that is available here:

http://hgdownload.soe.ucsc.edu/goldenPath/hg19/encodeDCC/wgEncodeMapability/wgEncodeDukeMapabilityUniqueness35bp.bigWig

and you can use the UCSC executables to handle/quert this file.

ADD COMMENT

Login before adding your answer.

Traffic: 2268 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