Aminoacids: Physical And Chemical Properties
Physical and Chemical Properties of Aminoacids
@kaggle.alejopaullier_aminoacids_physical_and_chemical_properties
Physical and Chemical Properties of Aminoacids
@kaggle.alejopaullier_aminoacids_physical_and_chemical_properties
Physical and Chemical properties of 22 aminoacids.
Columns description:
Name: name of the amino acid.Abbr: abbreviation of the amino acid.Letter: letter of the amino acid.Molecular Weight: molecular weight.Molecular Formula: molecular formula.Residue Formula: residue formula.Residue Weight: residue weight (-H20)pKa1: the negative of the logarithm of the dissociation constant for the -COOH group.pKb2: the negative of the logarithm of the dissociation constant for the -NH3 group.pKx3: the negative of the logarithm of the dissociation constant for any other group in the molecule.pl4: the pH at the isoelectric point.H: hydrophobicity.VSC: volumes of side chains amino acids.P1: polarity.P2: polarizability.SASA: solvent accesible surface area.NCISC: net charge of side chains.CREATE TABLE aminoacids (
"name" VARCHAR,
"abbr" VARCHAR,
"letter" VARCHAR,
"molecular_weight" DOUBLE,
"molecular_formula" VARCHAR,
"residue_formula" VARCHAR,
"residue_weight" DOUBLE,
"pka1" DOUBLE,
"pkb2" DOUBLE,
"pkx3" DOUBLE,
"pl4" DOUBLE,
"h" DOUBLE,
"vsc" DOUBLE,
"p1" DOUBLE,
"p2" DOUBLE,
"sasa" DOUBLE,
"ncisc" DOUBLE,
"carbon" BIGINT,
"hydrogen" BIGINT,
"nitrogen" BIGINT,
"oxygen" BIGINT,
"sulfur" BIGINT
);Anyone who has the link will be able to view this.