Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
ippidb-web
Manage
Activity
Members
Labels
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iPPIDB
ippidb-web
Commits
5ad81b20
Commit
5ad81b20
authored
8 years ago
by
Hervé MENAGER
Browse files
Options
Downloads
Patches
Plain Diff
add molecular function info to Protein/MolecularFunction
parent
858ce847
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ippisite/ippidb/models.py
+14
-2
14 additions, 2 deletions
ippisite/ippidb/models.py
with
14 additions
and
2 deletions
ippisite/ippidb/models.py
+
14
−
2
View file @
5ad81b20
...
...
@@ -3,7 +3,7 @@ from __future__ import unicode_literals
from
django.db
import
models
from
django.forms
import
ModelForm
from
.ws
import
get_pubmed_info
,
get_epo_info
,
get_uniprot_info
,
get_taxonomy_info
from
.ws
import
get_pubmed_info
,
get_epo_info
,
get_uniprot_info
,
get_taxonomy_info
,
get_go_info
class
Bibliography
(
models
.
Model
):
"""
...
...
@@ -68,6 +68,11 @@ class MolecularFunction(models.Model):
go_id
=
models
.
CharField
(
'
Gene Ontology ID
'
,
unique
=
True
,
max_length
=
10
)
# GO term id format: 'GO:0000000'
description
=
models
.
CharField
(
'
description
'
,
max_length
=
500
)
def
save
(
self
,
*
args
,
**
kwargs
):
info
=
get_go_info
(
self
.
go_id
)
self
.
description
=
info
[
'
label
'
]
super
(
MolecularFunction
,
self
).
save
(
*
args
,
**
kwargs
)
def
__str__
(
self
):
return
self
.
description
...
...
@@ -88,12 +93,19 @@ class Protein(models.Model):
try
:
taxonomy
=
Taxonomy
.
objects
.
get
(
taxonomy_id
=
info
[
'
organism
'
])
except
Taxonomy
.
DoesNotExist
:
tax_info
=
get_taxonomy_info
(
info
[
'
organism
'
])
taxonomy
=
Taxonomy
()
taxonomy
.
taxonomy_id
=
info
[
'
organism
'
]
taxonomy
.
save
()
self
.
organism
=
taxonomy
super
(
Protein
,
self
).
save
(
*
args
,
**
kwargs
)
for
go_id
in
info
[
'
molecular_functions
'
]:
try
:
mol_function
=
MolecularFunction
.
objects
.
get
(
go_id
=
go_id
)
except
MolecularFunction
.
DoesNotExist
:
mol_function
=
MolecularFunction
()
mol_function
.
go_id
=
go_id
mol_function
.
save
()
self
.
molecular_functions
.
add
(
mol_function
)
class
Domain
(
models
.
Model
):
pfam_acc
=
models
.
CharField
(
'
Pfam Accession
'
,
max_length
=
10
,
unique
=
True
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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