Skip to content

Commit

Permalink
Fix example seqs
Browse files Browse the repository at this point in the history
  • Loading branch information
liambai committed Dec 15, 2024
1 parent 0a1eec6 commit 41a17ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions viz/src/SAEConfigs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,8 @@ export const SAE_CONFIGS: Record<string, SAEConfig> = {
// @ts-expect-error I know this is a PDB ID
"PDB 5FHA (mAb114, binds ebolavirus glycoprotein)": "5FHA",
// @ts-expect-error I know this is a protein sequence
"PDB 3HFM L chain sequence":
"DIVLTQSPATLSVTPGNSVSLSCRASQSIGNNLHWYQQKSHESPRLLIKYASQSISGIPSRFSGSGSGTDFTLSINSVETEDFGMYFCQQSNSWPYTFGGGTKLEIKRADAAPTVSIFPPSSEQLTSGGASVVCFLNNFYPKDINVKWKIDGSERQNGVLNSWTDQDSKDSTYSMSSTLTLTKDEYERHNSYTCEATHKTSTSPIVKSFNRNEC",
"REGN10987 (binds SARS-CoV-2 spike protein) light chain sequence":
"QSALTQPASVSGSPGQSITISCTGTSSDVGGYNYVSWYQQHPGKAPKLMIYDVSKRPSGVSNRFSGSKSGNTASLTISGLQSEDEADYYCNSLTSISTWVFGGGTKLTVLGQPKAAPSVTLFPPSSEELQANKATLVCLISDFYPGAVTVAWKADSSPVKAGVETTTPSKQSNNKYAASSYLSLTPEQWKSHRSYSCQVTHEGSTVEKTVAPTECS",
},
defaultDim: 0,
supportsCustomSequence: true,
Expand Down
2 changes: 1 addition & 1 deletion viz/src/components/SeqInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function SeqInput({
/>
{error && <p className="text-sm text-red-500">{error}</p>}
{exampleSeqs && (
<div className="flex flex-row flex-wrap sm:gap-x-8 gap-x-2 gap-y-1 justify-between sm:justify-center">
<div className="flex flex-row flex-wrap sm:gap-x-8 gap-x-2 gap-y-2 justify-between sm:justify-center">
{Object.entries(exampleSeqs).map(([name, seq]) => (
<Button variant="outline" key={name} onClick={() => onSubmit(seq)}>
{name}
Expand Down

0 comments on commit 41a17ea

Please sign in to comment.