Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • hub/absd
1 result
Show changes
Commits on Source (4)
......@@ -50,7 +50,7 @@
<section>
<h3>
ORGANISM
SPECIES
<button
class="select-all-button"
:class="{ 'all-selected': allSelected('species', speciesList.length) }"
......@@ -360,6 +360,10 @@ function removeFilter(filterChip: FilterChip): void {
background-color: var(--primary);
border-color: var(--primary);
color: var(--black);
&:hover {
color: var(--black);
}
}
.checkbox-list {
......
......@@ -10,14 +10,14 @@
<meta property="og:url" content="https://absd.pasteur.cloud/">
<meta property="og:title" content="ABSD - AntiBody Sequence Database">
<meta property="og:description" content="ABSD is a database gathering antibody sequences, sourced from various repositories like the PDB, GeneBank, IMGT, UniProt, INN, and more.">
<meta property="og:image" content="/logo-meta-og.jpg">
<meta property="og:image" content="https://absd.pasteur.cloud/logo-meta-og.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="628">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://absd.pasteur.cloud/">
<meta property="twitter:title" content="ABSD - AntiBody Sequence Database">
<meta property="twitter:description" content="ABSD is a database gathering antibody sequences, sourced from various repositories like the PDB, GeneBank, IMGT, UniProt, INN, and more.">
<meta property="twitter:image" content="/logo-meta-og.jpg">
<meta property="twitter:image" content="https://absd.pasteur.cloud/logo-meta-og.jpg">
<meta property="twitter:image:width" content="1200">
<meta property="twitter:image:height" content="628">
<meta name="viewport" content="width=device-width, initial-scale=1">
......
......@@ -95,10 +95,10 @@ export interface Statistics {
*/
export interface APIFilters {
keywords: string
species: Array<Antibody['species']>
sources: Array<FastaHeader['source']>
heavySegments: Array<FastaHeader['vGeneSegment']>
lightSegments: Array<FastaHeader['vGeneSegment']>
species: Array<string>
sources: Array<string>
heavySegments: Array<string>
lightSegments: Array<string>
motif: string
}
......@@ -172,10 +172,10 @@ export interface APIUserMadeArchiveResponse {
* @link https://www.typescriptlang.org/docs/handbook/2/objects.html#excess-property-checks
*/
export type AdvancedFilters = {
species: Array<Antibody['species']>
sources: Array<FastaHeader['source']>
heavySegments: Array<FastaHeader['vGeneSegment']>
lightSegments: Array<FastaHeader['vGeneSegment']>
species: Array<string>
sources: Array<string>
heavySegments: Array<string>
lightSegments: Array<string>
motif: string
}
......