-
Notifications
You must be signed in to change notification settings - Fork 4
/
15_assembly_check.py
executable file
·57 lines (48 loc) · 1.79 KB
/
15_assembly_check.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#! /usr/bin/python3
#
# This source code is part of icgc, an ICGC processing pipeline.
#
# Icgc is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Icgc is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see<http://www.gnu.org/licenses/>.
#
# Contact: ivana.mihalek@gmail.com
#
from config import Config
from icgc_utils.mysql import *
#########################################
#########################################
def main():
# what is the difference between GRCh37 and hg19 ?
# https://www.biostars.org/p/123767/
# The genomic content for the two is identical, except for the mitochondrial contig
# we do not have MT, so wither one should be fine
db = connect_to_mysql(Config.mysql_conf_file)
cursor = db.cursor()
switch_to_db(cursor,'icgc')
#########################
# which temp somatic tables do we have
qry = "select table_name from information_schema.tables "
qry += "where table_schema='icgc' and table_name like '%_simple_somatic_temp'"
tables = [field[0] for field in search_db(cursor,qry)]
for table in tables:
print("======================")
print(table)
# get all coords which are not reference
qry = "select distinct assembly from {}". format(table)
ret = search_db(cursor,qry,verbose=True)
print(ret)
cursor.close()
db.close()
#########################################
if __name__ == '__main__':
main()