Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Wiki
Manage
Activity
Members
Labels
Plan
Issues
53
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
MDM Lab
Wiki
Commits
5c1ae539
Commit
5c1ae539
authored
1 year ago
by
Remi PLANEL
Browse files
Options
Downloads
Patches
Plain Diff
Handle case when no pdb file
parent
942770a8
No related branches found
No related tags found
No related merge requests found
Pipeline
#118469
passed with stages
in 6 minutes and 16 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/content/MolstarPdbePlugin.vue
+1
-1
1 addition, 1 deletion
components/content/MolstarPdbePlugin.vue
components/content/StructureDb.vue
+2
-1
2 additions, 1 deletion
components/content/StructureDb.vue
with
3 additions
and
2 deletions
components/content/MolstarPdbePlugin.vue
+
1
−
1
View file @
5c1ae539
...
@@ -218,7 +218,7 @@ const moleculeFormat: Ref<string> = ref("pdb")
...
@@ -218,7 +218,7 @@ const moleculeFormat: Ref<string> = ref("pdb")
<v-col>
<v-col>
<PlotFigure
v-if=
"sanitizedPaeData?.length > 0 && paeError === null"
defer
<PlotFigure
v-if=
"sanitizedPaeData?.length > 0 && paeError === null"
defer
:options=
"plotPaeOptions"
></PlotFigure>
:options=
"plotPaeOptions"
></PlotFigure>
<v-alert
v-else
type=
"warning"
>
{{
paeError
}}
</v-alert>
<v-alert
v-else
type=
"warning"
variant=
"tonal"
>
{{
paeError
}}
</v-alert>
<v-card
flat
color=
"transparent"
>
<v-card
flat
color=
"transparent"
>
<v-card-title>
Model Confidence
</v-card-title>
<v-card-title>
Model Confidence
</v-card-title>
...
...
This diff is collapsed.
Click to expand it.
components/content/StructureDb.vue
+
2
−
1
View file @
5c1ae539
...
@@ -67,8 +67,9 @@ function toSystemName(rawName: string) {
...
@@ -67,8 +67,9 @@ function toSystemName(rawName: string) {
<td
:colspan=
"columns.length"
>
<td
:colspan=
"columns.length"
>
<v-card
flat
color=
"transparent"
>
<v-card
flat
color=
"transparent"
>
<v-card-text>
<v-card-text>
<MolstarPdbePlugin
:data-urls=
"[`/$
{toSystemName(item.system)}/${pdbNameToCif(item.pdb)}`]">
<MolstarPdbePlugin
v-if=
"item?.pdb && item.pdb !== 'na'"
:data-urls=
"[`/$
{toSystemName(item.system)}/${pdbNameToCif(item.pdb)}`]">
</MolstarPdbePlugin>
</MolstarPdbePlugin>
<v-alert
v-else
variant=
"tonal"
type=
"warning"
>
No structure file
</v-alert>
</v-card-text>
</v-card-text>
</v-card>
</v-card>
</td>
</td>
...
...
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