Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -764,51 +764,51 @@ const nonEligableSymbols = [
symbol: '!@#$%^&*()_-+{}[]~}<>;,.\\|/:',
type: MonomerType.CHEM,
errorMessage:
'The monomer symbol must consist only of uppercase and lowercase letters, numbers, hyphens (-), underscores (_), and asterisks (*).',
'The monomer code must consist only of uppercase and lowercase letters, numbers, hyphens (-), underscores (_), and asterisks (*).',
},
{
description: '3. Non-unique for one HELM class (Peptides-Amino Acids)',
symbol: '1Nal',
type: MonomerType.AminoAcid,
naturalAnalogue: AminoAcidNaturalAnalogue.C,
errorMessage:
'The symbol must be unique amongst peptide, RNA, or CHEM monomers.',
'The code must be unique amongst peptide, RNA, or CHEM monomers.',
},
{
description: '4. Non-unique for one HELM class (RNA-Sugars)',
symbol: '12ddR',
type: MonomerType.Sugar,
errorMessage:
'The symbol must be unique amongst peptide, RNA, or CHEM monomers.',
'The code must be unique amongst peptide, RNA, or CHEM monomers.',
},
{
description: '5. Non-unique for one HELM class (RNA-Bases)',
symbol: '2imen2',
type: MonomerType.Base,
naturalAnalogue: NucleotideNaturalAnalogue.C,
errorMessage:
'The symbol must be unique amongst peptide, RNA, or CHEM monomers.',
'The code must be unique amongst peptide, RNA, or CHEM monomers.',
},
{
description: '6. Non-unique for one HELM class (RNA-Phosphates)',
symbol: 'AmC12',
type: MonomerType.Phosphate,
errorMessage:
'The symbol must be unique amongst peptide, RNA, or CHEM monomers.',
'The code must be unique amongst peptide, RNA, or CHEM monomers.',
},
{
description: '7. Non-unique for one HELM class (RNA-Nucleotides)',
symbol: '3Puro',
type: MonomerType.NucleotideMonomer,
errorMessage:
'The symbol must be unique amongst peptide, RNA, or CHEM monomers.',
'The code must be unique amongst peptide, RNA, or CHEM monomers.',
},
{
description: '8. Non-unique for one HELM class (RNA-CHEM)',
symbol: '2-Bio',
type: MonomerType.CHEM,
errorMessage:
'The symbol must be unique amongst peptide, RNA, or CHEM monomers.',
'The code must be unique amongst peptide, RNA, or CHEM monomers.',
},
{
description: '9. No symbol entered',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export const NotificationMessages: WizardNotificationMessageMap = {
'Attachment points are set by default with hydrogens as leaving groups.',
emptyMandatoryFields: 'Mandatory fields must be filled.',
invalidSymbol:
'The monomer symbol must consist only of uppercase and lowercase letters, numbers, hyphens (-), underscores (_), and asterisks (*).',
'The monomer code must consist only of uppercase and lowercase letters, numbers, hyphens (-), underscores (_), and asterisks (*).',
symbolExists:
'The symbol must be unique amongst peptide, RNA, or CHEM monomers.',
'The code must be unique amongst peptide, RNA, or CHEM monomers.',
editingIsNotAllowed: 'Editing of the structure is not allowed.',
noAttachmentPoints: 'The monomer must have at least one attachment point.',
incorrectAttachmentPointsOrder:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const MonomerCreationWizardFields = (
className={clsx(styles.attributesFields, selectStyles.selectContainer)}
>
<AttributeField
title="Symbol"
title="Code"
control={
<input
type="text"
Expand Down
Loading