Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EUbOPEN Web
Manage
Activity
Members
Labels
Plan
Issues
15
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ChEMBL
EUbOPEN
EUbOPEN Web
Commits
b47a9110
Commit
b47a9110
authored
3 years ago
by
David Mendez
Browse files
Options
Downloads
Patches
Plain Diff
Add mock up of calculated properties section
parent
a65d9cc9
No related branches found
Branches containing commit
No related tags found
1 merge request
!6
Add targets, compounds browser mockup and more sections to compound report card
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/report_cards/chemical_probe/CalculatedProperties.vue
+134
-2
134 additions, 2 deletions
...ents/report_cards/chemical_probe/CalculatedProperties.vue
with
134 additions
and
2 deletions
components/report_cards/chemical_probe/CalculatedProperties.vue
+
134
−
2
View file @
b47a9110
<
template
>
<div>
Calculated properties!
</div>
<v-card>
<v-card-text>
<v-row>
<v-col
cols=
"12"
md=
"6"
>
<v-list
dense
>
<template
v-for=
"item in properties1"
>
<v-list-item
:key=
"item.propLabel"
>
<v-list-item-content>
<v-list-item-title>
<div
class=
"d-flex justify-space-between"
>
<div>
<b>
{{
item
.
propLabel
}}
:
</b>
</div>
<div>
{{
item
.
propValue
}}
</div>
</div>
</v-list-item-title>
</v-list-item-content>
</v-list-item>
<v-divider
:key=
"`$
{item.propLabel}-divider`" />
</
template
>
</v-list>
</v-col>
<v-col
cols=
"12"
md=
"6"
>
<v-list
dense
>
<
template
v-for=
"item in properties2"
>
<v-list-item
:key=
"item.propLabel"
>
<v-list-item-content>
<v-list-item-title>
<div
class=
"d-flex justify-space-between"
>
<div>
<b>
{{
item
.
propLabel
}}
:
</b>
</div>
<div>
{{
item
.
propValue
}}
</div>
</div>
</v-list-item-title>
</v-list-item-content>
</v-list-item>
<v-divider
:key=
"`$
{item.propLabel}-divider`" />
</
template
>
</v-list>
</v-col>
</v-row>
</v-card-text>
</v-card>
</template>
<
script
>
export
default
{}
export
default
{
data
()
{
return
{
properties1
:
[
{
propLabel
:
'
Mol. Weight
'
,
propValue
:
'
494.3
'
,
},
{
propLabel
:
'
MW. Monoisotopic
'
,
propValue
:
'
180.0423
'
,
},
{
propLabel
:
'
ALogP
'
,
propValue
:
'
1.31
'
,
},
{
propLabel
:
'
#Rotatable Bonds
'
,
propValue
:
'
2
'
,
},
{
propLabel
:
'
Polar Surface Area
'
,
propValue
:
'
63.60
'
,
},
{
propLabel
:
'
Molecular Species
'
,
propValue
:
'
ACID
'
,
},
{
propLabel
:
'
HBA
'
,
propValue
:
'
3
'
,
},
{
propLabel
:
'
HDB
'
,
propValue
:
'
1
'
,
},
{
propLabel
:
'
#Ro5 Violations
'
,
propValue
:
'
0
'
,
},
{
propLabel
:
'
HBA (Lipinski)
'
,
propValue
:
'
4
'
,
},
],
properties2
:
[
{
propLabel
:
'
HBD (Lipinski)
'
,
propValue
:
'
1
'
,
},
{
propLabel
:
'
#Ro5 Violations (Lipinski)
'
,
propValue
:
'
0
'
,
},
{
propLabel
:
'
CX Acidic pKa
'
,
propValue
:
'
3.41
'
,
},
{
propLabel
:
'
CX Basic pKa
'
,
propValue
:
'
--
'
,
},
{
propLabel
:
'
CX LogP
'
,
propValue
:
'
1.24
'
,
},
{
propLabel
:
'
CX LogD pH7.4
'
,
propValue
:
'
-2.16
'
,
},
{
propLabel
:
'
Aromatic Rings
'
,
propValue
:
'
1
'
,
},
{
propLabel
:
'
Heavy Atoms
'
,
propValue
:
'
13
'
,
},
{
propLabel
:
'
QED Weighted
'
,
propValue
:
'
0.55
'
,
},
],
}
},
}
</
script
>
<
style
></
style
>
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