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

Merge branch 'copy-paste-sequence'

parents b8ce3595 f99773b1
No related branches found
No related tags found
No related merge requests found
Pipeline #130706 passed
......@@ -3,14 +3,11 @@ import { useThrottleFn } from '@vueuse/core'
import type { Analysis, Gene, GenesOut, Hmmer, HmmersOut, ProteinsOut } from '@/types'
// import { useFetchAnalysis } from "../../composables/useFetchAnalysis";
import { useSelectedProtein } from '@/composables/useSelectedProtein'
import { useAnalysisPolling } from "@/composables/useFetchAnalysis";
import { useRoute, computed } from "#imports";
import * as d3 from "d3";
import { useDisplay } from 'vuetify'
import { useElementSize } from '@vueuse/core'
import { joinURL } from "ufo";
const { width } = useDisplay()
const route = useRoute();
const { selectedProtein } = useSelectedProtein()
......@@ -47,17 +44,6 @@ const breadcrumbItems = computed(() => {
})
const options = computed(() => {
return {
interval: 5000,
refresh,
data: analysis,
pending
}
})
const height = ref(300)
const genesMap = computed(() => {
......@@ -457,8 +443,7 @@ useHead({
<v-card>
<v-toolbar density="compact" class="pr-2">
<v-toolbar-title>{{ analysis.name }}</v-toolbar-title>
<v-btn color="primary" prepend-icon="mdi-download"
:href="getResultArchiveUrl(analysis.id)">Download
<v-btn color="primary" prepend-icon="mdi-download" :href="getResultArchiveUrl(analysis.id)">Download
all results</v-btn>
<v-chip color="primary" rounded>{{ new Date(analysis.create_time).toLocaleString() }}</v-chip>
<template v-if="analysis.percentage_done !== 100 && analysis.stderr === ''" #extension>
......
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