-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.py
193 lines (170 loc) · 7.92 KB
/
classes.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# Copyright 2019 Alessandro Pio Greco, Patrick Hedley-Miller, Filipe Jesus, Zeyu Yang
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import copy
import csv
import logging
import os
import uuid
import datetime
import pandas as pd
from sqlalchemy import create_engine
from sqlalchemy.ext.automap import automap_base
from sqlalchemy.orm import Session
import programs
class database_checker():
def __init__(self, database_link):
self.Database = database_link
self.Base = automap_base()
self.engine = create_engine(self.Database)
self.Base.prepare(self.engine, reflect=True)
def check_and_run(self, root):
RSession = self.Base.classes.analysis_session
session = Session(self.engine)
for entry in session.query(RSession).filter(RSession.status == 1):
print(datetime.datetime.now())
print(entry.id)
self.create_workflow(entry.id, root)
entry.status = 2
session.commit()
def create_workflow(self, Session_ID, root):
Workflow = self.Base.classes.analysis_workflow
reader = database_reader(Session_ID)
reader.extract_from_database(self.Database, root)
logic = logic_builder(root)
logic.create_workflow_logic(reader)
print(reader.genome_index)
writer = programs.cwl_writer(reader, root)
writer.write_workflow(logic, Session(self.engine), Workflow)
class database_reader():
def __init__(self, Session_ID):
self.Session_ID = int(Session_ID)
self.workflows = {}
self.Reads_files = {}
self.Organism_name = ""
self.Genome_file = ""
self.Annotation_file = ""
self.identifier = ""
self.indexes = {}
self.cdna_file = ""
def extract_from_database(self, database, root):
Base = automap_base()
engine = create_engine(database)
Base.prepare(engine, reflect=True)
RSession = Base.classes.analysis_session
Samples = Base.classes.analysis_samples
Workflow = Base.classes.analysis_workflow
Condition = Base.classes.analysis_condition
Genome = Base.classes.analysis_genome
session = Session(engine)
self.Queue = Base.classes.analysis_queue
# extract fastq file path and coditions
self.libtype = []
for sample, condition in session\
.query(Samples, Condition)\
.filter(Samples.condition_id == Condition.id)\
.filter(Samples.session_id == self.Session_ID):
self.Reads_files[sample.accession] = {
"type": sample.libtype,
"condition": condition.condition,
"path": {
1: root + "/Data/" + sample.read_1,
2: root + "/Data/" + sample.read_2
}
}
self.libtype.append(sample.libtype)
self.libtype = list(set(self.libtype))
# extract steps in workflows of session
for entry in session.query(Workflow)\
.filter(Workflow.session_id == self.Session_ID):
print(self.libtype)
if entry.assembler.lower() == "misorun" and len(self.libtype) == 2:
print("Can't run MISO for mixed library type")
else:
self.workflows[entry.id] = [entry.mapper.lower(),
entry.assembler.lower(),
entry.analysis.lower()]
print(self.workflows)
# extract file path from Genome table
self.genome_index = session.query(RSession)\
.filter(RSession.id == self.Session_ID)\
.first()\
.genome_index
if self.genome_index == "pre_index":
for s,g in session.query(RSession, Genome)\
.filter(RSession.genome_id == Genome.id)\
.filter(RSession.id == self.Session_ID):
self.identifier = uuid.UUID(s.identifier)
self.Genome_file = g.fasta_dna_file
self.Annotation_file = g.gtf_file
self.indexes["star_genomedir"] = g.star
self.indexes["HISAT2Index"] = g.hisat2
self.indexes["salmon_index"] = g.salmon
self.Organism_name = g.organism
self.id = s.id
self.reactome = s.reactome
print(self.reactome)
elif self.genome_index == "user_provided":
for s in session.query(RSession)\
.filter(RSession.id == self.Session_ID):
self.Organism_name = s.organism
self.identifier = uuid.UUID(s.identifier)
data_path = f"{root}/Data/{self.identifier}/genome/"
self.Genome_file = f"{root}/Data/" + s.fasta_dna_file
self.cdna_file = f"{root}/Data/" + s.fasta_cdna_file
self.Annotation_file = f"{root}/Data/" + s.gtf_file
self.indexes["star_genomedir"] = data_path + "STARIndex"
self.indexes["HISAT2Index"] = data_path + "HISAT2Index"
self.indexes["salmon_index"] = data_path + "Salmonindex"
self.id = s.id
self.reactome = s.reactome
print(self.reactome)
# create metadata.csv of samples and conditions
## check if session directory exist
if not os.path.exists(f"{root}/Data/{self.identifier}"):
os.makedirs(f"{root}/Data/{self.identifier}")
query = session.query(Samples)\
.join(Condition, Samples.condition_id == Condition.id)\
.filter(Samples.session_id == self.Session_ID)\
.with_entities(Condition.condition,
Samples.accession,
Samples.libtype)
df = pd.read_sql(query.statement, session.bind, index_col="accession")
df.index.name = "name"
# df = df.sort_index()
df.to_csv(f"{root}/Data/{self.identifier}/metadata.csv",
quoting=csv.QUOTE_ALL)
class logic_builder():
def __init__(self, root):
self.programs_connections = \
pd.read_csv(f"{root}/rawg/flowgen/programs_connections.csv",
index_col=0, dtype=str)
self.analysis_id = {}
self.workflow = []
def create_workflow_logic(self, database_reader_object):
result = copy.deepcopy(database_reader_object.workflows)
for key, progs in database_reader_object.workflows.items():
if progs[1] == "cufflinks" and progs[0] == "hisat2":
progs[0] = "hisat2xs"
result[key][0] = "hisat2xs"
prev_prog = progs[0]
for prog in progs[1:]:
value = self.programs_connections[prog][prev_prog]
if value == "-1":
raise ValueError("Invalid step connection")
elif value != "0":
pos = prog
for i in value.split("_"):
result[key].insert(result[key].index(pos), i)
prev_prog = prog
for j in range(1, len(result[key])):
result[key][j] = "_".join(result[key][j-1:j+1])
self.analysis_id[result[key][j]] = key
self.workflow = sorted(set(item for sublist in result.values() for item in sublist))