ForHosting KIT · Developer Utilities

DNA concentration from A260 calculator for DNA and RNA

This DNA concentration from A260 calculator converts a blank-corrected absorbance reading into an estimated nucleic acid concentration.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

It selects the standard conversion factor for double-stranded DNA, single-stranded DNA, or RNA, then adjusts the result for sample dilution and optical path length. The output reports equivalent values in micrograms per milliliter, nanograms per microliter, and milligrams per milliliter, while also showing the factor and formula used so the calculation can be checked and recorded.

Choose the factor that matches the nucleic acid

An A260 reading does not become a concentration until it is paired with an appropriate conversion factor. This calculator uses the conventional factors for relatively pure nucleic acids measured with a one-centimeter optical path: 50 micrograms per milliliter for double-stranded DNA, 33 for single-stranded DNA, and 40 for RNA when A260 equals one. Select the material that actually dominates the sample. Do not select double-stranded DNA merely because a DNA extraction protocol was used; a preparation containing mostly short single strands requires the single-stranded factor, while an RNA preparation requires the RNA factor. These standard factors are practical estimates rather than sequence-specific extinction coefficients. Oligonucleotides with known base composition can be calculated more precisely from their sequence, so this tool should not replace a sequence-specific method when that information is available. The returned factor makes the assumption explicit and gives you a traceable value to include in a notebook, quality record, or downstream calculation. If the sample is a mixture, the result is an estimate based on the selected dominant class.

Enter dilution and path length correctly

Use the absorbance after subtracting the appropriate blank, because buffer, cuvette, and background absorption should not be counted as nucleic acid. The dilution factor describes how much the measured aliquot was diluted relative to the original sample. A sample made by combining one volume of stock with nineteen equal volumes of diluent has a total dilution factor of twenty, not nineteen. Enter one when the sample was measured without dilution. The calculator multiplies by this factor to recover the estimated concentration in the original tube. Standard A260 conversion factors assume a one-centimeter light path. If your instrument reports raw absorbance for another path length and does not already normalize it to one centimeter, enter the actual path length so the calculation divides by that distance. Many microvolume spectrophotometers automatically provide a one-centimeter-equivalent absorbance even though their physical path is shorter. In that case, keep the path length at one. Consult the instrument export or method settings rather than correcting an already normalized reading twice.

Interpret the concentration with the measurement limits in mind

The calculation follows concentration equals A260 multiplied by the selected factor and dilution factor, divided by path length. Micrograms per milliliter and nanograms per microliter have the same numerical value, so both units are returned for convenient use in laboratory protocols. The result is deterministic and does not judge sample purity. Absorbance at 260 nanometers can include contributions from free nucleotides, phenol, proteins, salts, and other contaminants, meaning a mathematically correct conversion can still overestimate usable DNA or RNA. Review appropriate purity ratios and assay controls separately, and repeat measurements that fall outside the reliable absorbance range of the instrument. Fluorescent assays may be preferable when concentration is low, contamination is substantial, or specificity for double-stranded DNA, single-stranded DNA, or RNA matters. This calculator is best used for transparent conversion of a valid A260 measurement, routine checks, and reproducible automation. It does not diagnose extraction quality, infer degradation, or certify that a sample is suitable for sequencing, amplification, cloning, or clinical use.

Recover an original DNA concentration

Apply the total dilution factor to a cuvette reading and report the double-stranded DNA concentration in common laboratory units.

Calculate RNA concentration

Use the standard RNA factor while preserving the absorbance, dilution, path length, and formula in a reproducible result.

Check microvolume instrument exports

Convert raw or normalized A260 values with an explicit path-length assumption before comparing samples or preparing dilutions.

Which conversion factors are used?

The calculator uses 50 micrograms per milliliter per A260 unit for double-stranded DNA, 33 for single-stranded DNA, and 40 for RNA, based on a one-centimeter path.

What dilution factor should I enter?

Enter the total ratio of final diluted volume to the volume of original sample. Use 1 when the measured sample was not diluted.

Should path length be 1 for a microvolume spectrophotometer?

Use 1 when the instrument reports absorbance normalized to a one-centimeter path. Enter another value only when the reading is raw and requires path-length correction.

Why are micrograms per milliliter and nanograms per microliter identical?

The unit scaling in numerator and denominator cancels, so one microgram per milliliter equals one nanogram per microliter.

Does A260 prove that my sample is pure?

No. Other absorbing substances can affect A260. Assess purity and assay suitability separately with the controls and measurements appropriate to your workflow.

What does an API request cost?

Each API request costs $0.002. The calculation also runs locally in the browser for the interactive page.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/bio/nucleic-acid-concentration-a260

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/bio/nucleic-acid-concentration-a260 \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"absorbance_a260":0.25,"nucleic_acid_type":"double_stranded_dna"}'
{
  "absorbance_a260": 0.25,
  "nucleic_acid_type": "double_stranded_dna"
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "bio.nucleic_acid_concentration_a260",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →