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

udpate

parent 760d15b5
No related branches found
No related tags found
1 merge request!222Refseq no sys
Pipeline #123649 waiting for manual action
...@@ -54,7 +54,7 @@ function onScroll() { ...@@ -54,7 +54,7 @@ function onScroll() {
<v-container v-scroll="onScroll" :fluid="fluid"> <v-container v-scroll="onScroll" :fluid="fluid">
<v-row justify="center"> <v-row justify="center">
<v-col cols="auto" class="pa-0"> <v-col cols="auto" class="pa-0">
<v-card flat color="transparent" :min-width="mobile ? undefined : 900" :max-width="fluid ? undefined : 1500"> <v-card flat color="transparent" :min-width="mobile ? undefined : 900" :max-width="fluid ? undefined : 1280">
<v-card-text class="pa-0"> <v-card-text class="pa-0">
<slot /> <slot />
</v-card-text> </v-card-text>
......
...@@ -322,22 +322,24 @@ function namesToAccessionChips(names: string[]) { ...@@ -322,22 +322,24 @@ function namesToAccessionChips(names: string[]) {
} }
const systemPanel: Ref<string[]> = ref([]) const systemPanel: Ref<string[]> = ref([])
const layoutPlot: Ref<string> = ref("grid") const layoutPlot: Ref<string> = ref("grid")
const binPlotOptions = ref({ const binPlotOptions = computed(() => {
marginLeft: 150, return {
marginBottom: 200, marginLeft: 150,
padding: 0, marginBottom: 200,
grid: true, padding: 0,
x: { tickRotate: 90, tip: true, label: "Systems" }, grid: true,
// y: { tickFormat: 's' }, x: { tickRotate: 90, label: "Systems" },
color: { scheme: "plasma", legend: true, domain: [0, 100] }, // y: { tickFormat: 's' },
color: { scheme: "plasma", legend: true, label: `Proportion of genomes with defense system X for a given ${selectedTaxoRank.value} clade`, domain: [0, 100] },
}
}) })
const binPlotGroup = computed(() => { const binPlotGroup = computed(() => {
return Plot.group( return Plot.group(
{ {
label: (d) => d.fill,
fill: { fill: {
label: `Normalize by ${selectedTaxoRank.value} clade`,
reduceIndex: function (I, X) { reduceIndex: function (I, X) {
const toValTaxonomyFacet = toValue(taxonomyFacet) const toValTaxonomyFacet = toValue(taxonomyFacet)
if (toValTaxonomyFacet !== undefined) { if (toValTaxonomyFacet !== undefined) {
...@@ -380,7 +382,7 @@ const binPlotDataOptions = computed(() => { ...@@ -380,7 +382,7 @@ const binPlotDataOptions = computed(() => {
}, },
marks: [ marks: [
Plot.cell(data, toValue(binPlotGroup)) Plot.cell(data, toValue(binPlotGroup)),
] ]
} : null } : null
......
...@@ -9,7 +9,7 @@ meilisearch: ...@@ -9,7 +9,7 @@ meilisearch:
persistence: persistence:
enabled: true enabled: true
storageClass: isilon storageClass: isilon
size: "3Gi" size: "4Gi"
resources: resources:
limits: limits:
cpu: 2000m cpu: 2000m
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment