From c7e0ad5b167ab5d43c8b375e7d4926180f1a2111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20=20MENAGER?= <herve.menager@pasteur.fr> Date: Wed, 11 Apr 2018 16:47:35 +0200 Subject: [PATCH] minor comments and style improvements Former-commit-id: a3a34d0f32125c4da18744b97da796a16d8e056f --- ippisite/ippidb/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ippisite/ippidb/models.py b/ippisite/ippidb/models.py index ed714f81..9031e296 100644 --- a/ippisite/ippidb/models.py +++ b/ippisite/ippidb/models.py @@ -168,6 +168,7 @@ class ProteinDomainComplex(models.Model): def name(self): return self.protein.short_name + class ProteinDomainBoundComplex(ProteinDomainComplex): ppp_copy_nb_per_p = models.IntegerField( 'Number of copies of the protein in the pocket') @@ -442,7 +443,7 @@ class Compound(models.Model): @property def best_pXC50_activity_ppi_name(self): """ - LE: Ligand Efficiency + Name of the PPI corresponding to the best PXC50 activity """ best_activity_car = self.best_pXC50_compound_activity_result if best_activity_car is None: -- GitLab