Baselight

Aminoacids: Physical And Chemical Properties

Physical and Chemical Properties of Aminoacids

@kaggle.alejopaullier_aminoacids_physical_and_chemical_properties

Aminoacids
@kaggle.alejopaullier_aminoacids_physical_and_chemical_properties.aminoacids

  • 16.81 KB
  • 22 rows
  • 22 columns
name

Name

abbr

Abbr

letter

Letter

molecular_weight

Molecular Weight

molecular_formula

Molecular Formula

residue_formula

Residue Formula

residue_weight

Residue Weight

pka1

PKa1

pkb2

PKb2

pkx3

PKx3

pl4

Pl4

h

H

vsc

VSC

p1

P1

p2

P2

sasa

SASA

ncisc

NCISC

carbon

Carbon

hydrogen

Hydrogen

nitrogen

Nitrogen

oxygen

Oxygen

sulfur

Sulfur

AlanineAlaA89.1C3H7NO2C3H5NO71.082.349.6960.6227.58.10.0461.1810.0071873712
CysteineCysC121.16C3H7NO2SC3H5NOS103.151.9610.288.185.070.2944.65.50.1281.461-0.0366137121
Aspartic acidAspD133.11C4H7NO4C4H5NO3115.091.889.63.652.77-0.940130.1051.587-0.023824714
Glutamic acidGluE147.13C5H9NO4C5H7NO3129.122.199.674.253.22-0.746212.30.1511.8620.0068025914
PhenylalaninePheF165.19C9H11NO2C9H9NO147.181.839.135.481.19115.55.20.292.2280.03755291112
GlycineGlyG75.07C2H5NO2C2H3NO57.052.349.65.970.4890.8810.1790522512
HistidineHisH155.16C6H9N3O2C6H7N3O137.141.829.1767.59-0.47910.40.232.025-0.010696932
IsoleucineIleI131.18C6H13NO2C6H11NO113.162.369.66.021.3893.55.20.1861.810.02163161312
LysineLysK146.19C6H14N2O2C6H12N2O128.182.188.9510.539.74-1.510011.30.2192.2580.01770861422
LeucineLeuL131.18C6H13NO2C6H11NO113.162.369.65.981.0693.54.90.1861.9310.05167261312

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
);

Share link

Anyone who has the link will be able to view this.