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
8402f348
Commit
8402f348
authored
6 years ago
by
Hervé MENAGER
Browse files
Options
Downloads
Patches
Plain Diff
improve physicochemical filters table appearance
Former-commit-id: b18c0c2eb0dde8ca71fd0d20e7a2c09d1a8c2c14
parent
01b1144a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ippisite/ippidb/templates/compound_card.html
+24
-24
24 additions, 24 deletions
ippisite/ippidb/templates/compound_card.html
with
24 additions
and
24 deletions
ippisite/ippidb/templates/compound_card.html
+
24
−
24
View file @
8402f348
...
...
@@ -97,51 +97,51 @@
<tbody>
<tr>
<th
scope=
"row"
>
Global
</th>
<td
class=
"{% if compound.lipinsky_global %}
bg
-success{% else %}
bg
-danger{% endif %}"
></td>
<td
class=
"{% if compound.veber_global %}
bg
-success{% else %}
bg
-danger{% endif %}"
></td>
<td
class=
"{% if compound.pfizer_global %}
bg
-success{% else %}
bg
-danger{% endif %}"
></td>
<td
class=
"{% if compound.lipinsky_global %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"at least 3 criteria ok"
></td>
<td
class=
"{% if compound.veber_global %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"RB and HBA+HBD or TPSA ok"
></td>
<td
class=
"{% if compound.pfizer_global %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"AlogP and TPSA ok"
></td>
</tr>
<tr>
<th
scope=
"row"
>
MW
</th>
<td
class=
"{% if compound.lipinsky_mw %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"Molecular weight <= 500g/mol"
>
{{ compound.molecular_weight }}g/mol
</td>
<td
class=
"
bg
-light"
></td>
<td
class=
"
bg
-light"
></td>
<td
class=
"
text-right
{% if compound.lipinsky_mw %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"Molecular weight <= 500g/mol"
>
{{ compound.molecular_weight }}g/mol
</td>
<td
class=
"
table
-light"
></td>
<td
class=
"
table
-light"
></td>
</tr>
<tr>
<th
scope=
"row"
>
HBA
</th>
<td
class=
"{% if compound.lipinsky_hba %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"HBA <= 10"
>
{{ compound.nb_acceptor_h }}
</td>
<td
class=
"
bg
-light"
></td>
<td
class=
"
bg
-light"
></td>
<td
class=
"
text-right
{% if compound.lipinsky_hba %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"HBA <= 10"
>
{{ compound.nb_acceptor_h }}
</td>
<td
class=
"
table
-light"
></td>
<td
class=
"
table
-light"
></td>
</tr>
<tr>
<th
scope=
"row"
>
HBD
</th>
<td
class=
"{% if compound.lipinsky_hbd %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"HBD <= 5"
>
{{ compound.nb_donor_h }}
</td>
<td
class=
"
bg
-light"
></td>
<td
class=
"
bg
-light"
></td>
<td
class=
"
text-right
{% if compound.lipinsky_hbd %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"HBD <= 5"
>
{{ compound.nb_donor_h }}
</td>
<td
class=
"
table
-light"
></td>
<td
class=
"
table
-light"
></td>
</tr>
<tr>
<th
scope=
"row"
>
HBA + HBD
</th>
<td
class=
"
bg
-light"
></td>
<td
class=
"{% if compound.veber_hba_hbd %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"HBD + HBA <= 12"
>
{{ compound.hba_hbd }}
</td>
<td
class=
"
bg
-light"
></td>
<td
class=
"
table
-light"
></td>
<td
class=
"
text-right
{% if compound.veber_hba_hbd %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"HBD + HBA <= 12"
>
{{ compound.hba_hbd }}
</td>
<td
class=
"
table
-light"
></td>
</tr>
<tr>
<th
scope=
"row"
>
AlogP
</th>
<td
class=
"{% if compound.lipinsky_a_log_p %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"AlogP <= 5"
>
{{ compound.a_log_p }}
</td>
<td
class=
"
bg
-light"
></td>
<td
class=
"{% if compound.pfizer_a_log_p %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"AlogP <= 3"
>
{{ compound.a_log_p }}
</td>
<td
class=
"
text-right
{% if compound.lipinsky_a_log_p %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"AlogP <= 5"
>
{{ compound.a_log_p }}
</td>
<td
class=
"
table
-light"
></td>
<td
class=
"
text-right
{% if compound.pfizer_a_log_p %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"AlogP <= 3"
>
{{ compound.a_log_p }}
</td>
</tr>
<tr>
<th
scope=
"row"
>
TPSA
</th>
<td
class=
"
bg
-light"
></td>
<td
class=
"{% if compound.veber_tpsa %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"TPSA <= 140"
>
{{ compound.tpsa }}
</td>
<td
class=
"{% if compound.pfizer_tpsa %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"TPSA <= 75"
>
{{ compound.tpsa }}
</td>
<td
class=
"
table
-light"
></td>
<td
class=
"
text-right
{% if compound.veber_tpsa %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"TPSA <= 140"
>
{{ compound.tpsa }}
</td>
<td
class=
"
text-right
{% if compound.pfizer_tpsa %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"TPSA <= 75"
>
{{ compound.tpsa }}
</td>
</tr>
<tr>
<th
scope=
"row"
>
RB
</th>
<td
class=
"
bg
-light"
></td>
<td
class=
"{% if compound.veber_rb %}
bg
-success{% else %}
bg
-danger{% endif %}"
title=
"RB <= 10"
>
{{ compound.nb_rotatable_bonds }}
</td>
<td
class=
"
bg
-light"
></td>
<td
class=
"
table
-light"
></td>
<td
class=
"
text-right
{% if compound.veber_rb %}
table
-success{% else %}
table
-danger{% endif %}"
title=
"RB <= 10"
>
{{ compound.nb_rotatable_bonds }}
</td>
<td
class=
"
table
-light"
></td>
</tr>
</tbody>
</table>
...
...
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