Skip to content
Snippets Groups Projects
Commit 7ec19a01 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

hide pae if pdb

parent d9066e3d
No related branches found
No related tags found
1 merge request!222Refseq no sys
Pipeline #122741 waiting for manual action with stages
in 29 minutes and 48 seconds
......@@ -210,7 +210,7 @@ const moleculeFormat: Ref<string> = ref("pdb")
sequence-panel="true" landscape="false" :custom-data-format="moleculeFormat"></pdbe-molstar>
</v-sheet>
</v-col>
<v-col :cols="mobile ? 12 : undefined">
<v-col v-if="moleculeFormat === 'cif'" :cols="mobile ? 12 : undefined">
<v-img :src="selectedPaePath"></v-img>
<!-- <PlotFigure v-if="sanitizedPaeData?.length > 0 && paeError === null" defer
......
......@@ -107,11 +107,13 @@ const scaleTypes = ref<string[]>(['linear', 'sqrt', 'log', 'symlog'])
const selectedTaxoRank = ref("Superkingdom");
const headers = ref([
{ title: "Replicon", key: "replicon" },
{
title: "System",
key: "type",
fixed: true
},
{ title: "Replicon", key: "replicon" },
{
title: "Subsystem",
key: "subtype",
......@@ -474,14 +476,16 @@ async function downloadPng(component: ComponentPublicInstance | null, filename:
</CollapsibleChips>
</template>
<template #[`item.type`]="{ item }">
<v-chip color="info" link size="small" :to="`/defense-systems/${item.type.toLowerCase()}`" target="_blank"> {{
item.type }}
<v-chip color="info" link size="small" :to="`/defense-systems/${item.type.toLowerCase()}`"
target="_blank"> {{
item.type }}
</v-chip>
</template>
<template #[`item.subtype`]="{ item }">
<v-chip color="info" link size="small" :to="`/defense-systems/${item.type.toLowerCase()}`" target="_blank"> {{
item.subtype }}
<v-chip color="info" link size="small" :to="`/defense-systems/${item.type.toLowerCase()}`"
target="_blank"> {{
item.subtype }}
</v-chip>
</template>
</ServerDbTable>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment