Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SOaAS
psot.repository
Commits
1e084c41
Commit
1e084c41
authored
Dec 01, 2017
by
hmueller
Browse files
Write "no match found" for results list when query had no matches.
parent
6a80c032
Changes
1
Hide whitespace changes
Inline
Side-by-side
scripts/convert_hmmer.py
View file @
1e084c41
...
...
@@ -9,6 +9,11 @@ parser.add_argument('--output', '-o', required=True, help='The converted results
parser
.
add_argument
(
'--dbxref'
,
'-d'
,
required
=
True
,
help
=
'The dbxref prefix that will be prepended to the accession or id'
)
args
=
parser
.
parse_args
()
query_file
=
args
.
result
+
"/queries.json"
queries
=
[]
with
open
(
query_file
)
as
f
:
queries
=
json
.
load
(
f
)
filename
=
args
.
result
+
"/domtblout.tsv"
documents
=
{}
tool
=
{
'name'
:
None
,
'version'
:
None
,
'database'
:
None
}
...
...
@@ -30,7 +35,11 @@ with open(filename) as f:
query_id
=
split
[
3
]
if
not
query_id
in
documents
:
documents
[
query_id
]
=
{
"id"
:
query_id
,
"computations"
:
[{
'tool'
:
tool
,
'results'
:[]}]}
results
=
documents
[
query_id
][
'computations'
][
0
][
"results"
]
try
:
queries
.
remove
(
query_id
)
except
ValueError
:
print
(
'HMMER converter: Query ID "'
+
query_id
+
'" not present among initial queries!'
)
results
=
documents
[
query_id
][
'computations'
][
0
][
"results"
]
results
.
append
({
'target'
:
{
...
...
@@ -48,6 +57,13 @@ with open(filename) as f:
}
})
# Include queries with no matches in results
for
query_id
in
queries
:
print
(
"In list: "
+
query_id
)
if
not
query_id
in
documents
:
print
(
"Recording: "
+
query_id
)
documents
[
query_id
]
=
{
"id"
:
query_id
,
"computations"
:
[{
'tool'
:
tool
,
'results'
:
"no match found"
}]}
output_filename
=
args
.
output
with
open
(
output_filename
,
'w'
)
as
o
:
json
.
dump
(
documents
,
o
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment