From 156f09d29e0d0b2029db92ac5c163bb794586ba0 Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Tue, 30 Jan 2024 16:18:25 +0100 Subject: [PATCH] add cifs --- components/content/StructureDb.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/content/StructureDb.vue b/components/content/StructureDb.vue index 54a8658d..cf2ae87b 100644 --- a/components/content/StructureDb.vue +++ b/components/content/StructureDb.vue @@ -142,7 +142,8 @@ function pdbNameToCif(pdbPath: string) { return `${cifPath}.cif` } -const { refinedUrl: downloadAllPdbUrl } = useRefinedUrl("/df-all-pdb.tar.gz") +const { refinedUrl: downloadAllPdbUrl } = useRefinedUrl("/df-all-pdbs.tar.gz") +const { refinedUrl: downloadAllCifUrl } = useRefinedUrl("/df-all-cifs.tar.gz") </script> <template> @@ -247,8 +248,8 @@ const { refinedUrl: downloadAllPdbUrl } = useRefinedUrl("/df-all-pdb.tar.gz") <v-list-item value="pdb" :href="downloadAllPdbUrl"> <v-list-item-title>all pdbs</v-list-item-title> </v-list-item> - <v-list-item value="pdb"> - <v-list-item-title>all cifs </v-list-item-title> + <v-list-item value="cif" :href="downloadAllCifUrl"> + <v-list-item-title>all cifs</v-list-item-title> </v-list-item> </v-list> </v-menu> -- GitLab