-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsra_run_parser.py
198 lines (174 loc) · 7.28 KB
/
sra_run_parser.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
194
195
196
197
198
#!/usr/bin/env python3
""" SRA Run Analysis Parser
This script will parse the XML result file from the SRA Trace site(the home of
sra runs). It takes a directory as an input and will iterate through all files,
parsing each one to first a dictionary, and then will output to the terminal in
TSV format, or to a file if an output file is provided.
"""
import os
import sys
import csv
import argparse
import xml.etree.ElementTree as ET
__version__ = "0.1.0"
__status__ = "Beta"
def usr_args():
"""Program Arguments
All arguments for process are defined here.
"""
# initialize parser
parser = argparse.ArgumentParser()
# set usages options
parser = argparse.ArgumentParser(
prog='sra_trace_xml.py',
usage='%(prog)s [options]')
# version
parser.add_argument(
'-v', '--version',
action='version',
version='%(prog)s ' + __version__)
parser.add_argument('-d', '--directory',
required=True,
help="Directory for list of input files. The input files should be SRR \
XML files.")
parser.add_argument('-o', '--output',
help="Output file. If no output is provided, the resulting table will be \
output to the terminal.")
if len(sys.argv) <= 1:
sys.argv.append('--help')
return parser.parse_args()
def parse_xml( xml_file, samples):
"""Parse XML file
Parameters
----------
xml_file: str
file path/name to be parsed
samples: dict
dictionary of samples
Returns
-------
samples: dict
dictionary of samples
"""
# print(file)
base_total = base_a = base_c = base_g = base_t = base_n = '-'
sra_experiment_id = sra_run_id = sra_project_id = sra_biosample_id \
= num_of_bases = file_size = published = source = strategy = layout \
= library_name = selection = instrument = file_type \
= unidentified_reads = identified_reads = tax_id = lineage \
= percent_identified = gc_content = '-'
# create element tree object and get root element
try:
root = ET.parse(xml_file).getroot()
sra_run_id = "run_id_placeholder" # root.attrib['run']
for run in root.findall('.//RUN'):
file_size = run.attrib['size']
published = run.attrib['published']
file_type = run.findall('./SRAFiles/')[0].attrib['semantic_name']
for run_tag in run.findall('./'):
if run_tag.tag == 'EXPERIMENT_REF':
sra_experiment_id = run_tag.attrib['accession']
if run_tag.tag == 'Bases':
base_total = int(run_tag.attrib['count'])
for base in run_tag:
if base.attrib['value'] == 'A':
base_a = int(base.attrib['count'])
if base.attrib['value'] == 'C':
base_c = int(base.attrib['count'])
if base.attrib['value'] == 'G':
base_g = int(base.attrib['count'])
if base.attrib['value'] == 'T':
base_t = int(base.attrib['count'])
if base.attrib['value'] == 'N':
base_n = int(base.attrib['count'])
if run_tag.tag == 'tax_analysis':
analyzed_spot_count = int(run_tag.attrib['analyzed_spot_count'])
try:
identified_reads = int(run_tag.attrib['identified_spot_count'])
except KeyError:
identified_reads = int(run_tag[0].attrib['total_count'])
if run_tag.tag == 'Lineage':
for line in run_tag:
if lineage == '-':
lineage = str(line.text)
else:
lineage = lineage + '|'+ line.text
# lineage.append(line.text)
if line.attrib != {}:
tax_id = line.attrib['taxid']
for experiment in root.findall('.//EXPERIMENT'):
for platform in experiment.findall('./PLATFORM/'):
for instriment in platform:
instrument = instriment.text
for descriptor in experiment.findall('./DESIGN/LIBRARY_DESCRIPTOR'):
for lib_name in descriptor.findall('./LIBRARY_NAME'):
library_name = lib_name.text
for lib_stratagy in descriptor.findall('./LIBRARY_STRATEGY'):
strategy = lib_stratagy.text
for lib_source in descriptor.findall('./LIBRARY_SOURCE'):
source = lib_source.text
for lib_selection in descriptor.findall('./LIBRARY_SELECTION'):
selection = lib_selection.text
for lib_layout in descriptor.findall('./LIBRARY_LAYOUT/'):
layout = lib_layout.tag
for biosample in root.findall('./SAMPLE/'):
if biosample.tag == 'SAMPLE_NAME' and lineage == '-':
lineage = biosample[1].text
if biosample.tag == 'IDENTIFIERS':
sra_biosample_id = biosample[1].text
for study in root.findall('./STUDY'):
sra_project_id = study.attrib['alias']
samples[sra_experiment_id] = [sra_run_id, sra_project_id, \
sra_biosample_id, \
file_size, published, source, \
strategy, layout,library_name, selection, instrument, file_type, \
tax_id, lineage]
except ET.ParseError:
print(xml_file, 'not well-formed')
return samples
def sample_output(samples, header, output):
"""Sample Output
If an output file is supplied in the user arguments the samples dictionary
will be output in TSV to the supplied file. If no output is provided, the
samples dictionary will print to the terminal in a TSV format.
Parameters
----------
header: lst of str
List of column headers for the output
samples: dict
dictionary of samples
outputs: str, optional
file path/name to output data to
"""
if output:
sample_file = os.path.abspath(output)
with open(sample_file, 'w', encoding='utf8') as file:
writer = csv.writer(file, header, delimiter='\t')
writer.writerow(header)
for key in samples:
row = [key]
for item in range(len(samples[key])):
row.append(samples[key][item])
writer.writerow(row)
print('Samples written to ', sample_file)
else:
print('\t'.join(item for item in header))
for run in samples:
print(run, '\t', '\t'.join(str(item) for item in samples[run]))
def main():
"""Main Function
"""
samples = {}
header = ['sra_experiment_id', 'sra_run_id', 'sra_project_id', \
'sra_biosample_id', \
'file_size', 'published', \
'source', 'strategy', 'layout', 'library_name', 'selection', \
'instrument', 'file_type', \
'taxonomy_id', 'lineage']
args = usr_args()
for item in os.listdir(args.directory):
xml_file = os.path.join(args.directory, item)
parse_xml(xml_file, samples)
sample_output(samples, header, args.output)
if __name__ == "__main__":
main()