Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
capsuledb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gem
capsuledb
Commits
a8a89577
Commit
a8a89577
authored
13 years ago
by
Bertrand NÉRON
Browse files
Options
Downloads
Patches
Plain Diff
bug fix T3SS_family typos
somewhere it was spelled with 2 l
parent
f97e6470
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/couchapp/secreton/templates/secretion_system.html
+1
-1
1 addition, 1 deletion
src/couchapp/secreton/templates/secretion_system.html
src/parser/parser.py
+3
-3
3 additions, 3 deletions
src/parser/parser.py
with
4 additions
and
4 deletions
src/couchapp/secreton/templates/secretion_system.html
+
1
−
1
View file @
a8a89577
...
...
@@ -231,7 +231,7 @@
<h1>
Secretion system {{code}}
</h1>
<ul>
<li>
code: {{code}}
</li>
<li>
T3SS family:{{T3SS_famil
l
y}}
</li>
<li>
T3SS family:{{T3SS_family}}
</li>
</ul>
<h2>
Replicon
</h2>
<ul>
...
...
This diff is collapsed.
Click to expand it.
src/parser/parser.py
+
3
−
3
View file @
a8a89577
...
...
@@ -41,7 +41,7 @@ def system_parser( system_data ):
@rtype: dict
"""
system_db
=
{}
System_info
=
namedtuple
(
'
System_info
'
,
'
code, T3SS_famil
l
y, replicon, genes
'
)
System_info
=
namedtuple
(
'
System_info
'
,
'
code, T3SS_family, replicon, genes
'
)
Gene
=
namedtuple
(
'
Gene
'
,
'
code, id, protein_length, strand, begin, end, match, full_score, e_value, best_domain_score, best_domain_evalue, c_value, coverage_profile, match_begin, match_end
'
)
with
open
(
system_data
,
'
r
'
)
as
system_file
:
...
...
@@ -89,7 +89,7 @@ class SecretionSystem( Document ):
a representation of a secretion System to be use with couchdb
"""
code
=
StringProperty
(
required
=
True
)
T3SS_famil
l
y
=
StringProperty
()
T3SS_family
=
StringProperty
()
replicon
=
DictProperty
()
genes
=
ListProperty
()
...
...
@@ -131,7 +131,7 @@ def fill_db( server_uri, db_name, user, passwd, replicon_db , system_db , force_
secretion_system
=
SecretionSystem
()
secretion_system
.
_id
=
system
.
code
secretion_system
.
code
=
system
.
code
secretion_system
.
T3SS_famil
l
y
=
system
.
T3SS_famil
l
y
secretion_system
.
T3SS_family
=
system
.
T3SS_family
secretion_system
.
replicon
=
{
'
name
'
:
replicon
.
name
,
'
taxid
'
:
replicon
.
taxid
,
'
strain
'
:
replicon
.
strain
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment