Metadata-Version: 2.4
Name: peptide-cost-ref
Version: 1.0.2
Summary: Peptide cost and reconstitution reference calculators for research use
License-Expression: MIT
Project-URL: Homepage, https://peptidescost.us/
Project-URL: Related Resources, https://peptideonline.org/
Project-URL: Source Article, https://peptidescosts.com/author/
Keywords: peptide,reconstitution,calculator,research,cost,bacteriostatic
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# A Field Guide to Reading Peptide Price Tags: Vial Cost vs. Cost Per Milligram

*Written and medically reviewed by **Benjamin Clark, MD**, internal medicine physician. [Read full bio](https://peptidescosts.com/author/).*

Open two research peptide listings side by side and you'll often see two very different numbers doing two very different jobs: the price stamped on the vial, and a price-per-milligram figure that may or may not be shown at all. Confuse the two, or worse, compare a vial price on one listing against a per-mg figure on another, and you'll draw a conclusion that has nothing to do with actual cost efficiency.

## Two Numbers, Two Jobs
The vial price is a transaction total. It tells you what a single checkout will cost, full stop. It doesn't tell you anything about how much compound sits inside that vial, because packaging sizes are set by the supplier and can differ compound to compound, or even listing to listing for the same compound.

Price per milligram strips packaging out of the equation entirely. Take the vial price, divide by the milligram amount printed on the label, and what's left is a rate â€” the cost of one unit of material, independent of how it was bottled. That rate is the only fair way to stack a small vial from one catalog against a larger vial from another.

Neither number is wrong. They're just answering different questions, and a catalog that surfaces only one of them is quietly hiding the other half of the picture.

## Where the Gap Comes From
The entire divergence traces back to fill size. Two listings can carry the exact same per-mg rate while showing wildly different vial prices, purely because one vial holds more material than the other. Flip it around, and two vials can be priced almost identically at checkout while their per-mg rates sit far apart, again just because of how much is packed inside.

Note that this is strictly a labeling and packaging question, not a preparation question. Whatever a researcher does with a vial after purchase â€” how a solution is later handled, stored, or measured out â€” has no bearing on what was paid or how much material was in the container to begin with. Storage conditions can shorten how long a prepared solution stays usable, and refrigeration with minimal freeze-thaw cycling is standard practice, but none of that changes the purchase-time math.

## Putting the Math Side by Side
Say one listing runs $150 for a 10 mg vial and a second runs $95 for a 5 mg vial. On the checkout page, the second looks cheaper. Divide it out, though, and the first works out to $15.00 per mg while the second lands at $19.00 per mg â€” the "cheaper" listing is actually the pricier one once fill size is normalized. Anyone sorting a spreadsheet by sticker price alone would rank these backwards.

This is precisely the comparison a well-built cost catalog performs behind the scenes, converting every listing's vial price into a per-mg rate so compounds can be ranked on one consistent scale instead of whatever unit a given vendor happens to advertise. Readers who want a deeper breakdown of exactly how that conversion works, and why vendors rarely quote it themselves, can see a fuller explanation in this [comparison of per-vial and per-milligram pricing for research peptides](https://peptideonline.org/articles/what-is-the-difference-between-price-per-vial-and-price-per-mg-for-research-peptides/), which walks through the same underlying arithmetic from a slightly different angle.

## Knowing Which Number to Reach For
If the question is "what will this order cost me today," the vial price is the right figure â€” it's the actual invoice line. If the question is "is this vendor's pricing actually competitive," the per-mg rate is the only figure that answers it honestly, because it's the only one that survives a change in vial size.

A catalog worth trusting shows both, side by side, rather than forcing a choice. And because listing prices shift over time, any per-mg figure is only as fresh as the vial price it was calculated from â€” a table pulled last month can already be out of date, so checking the revision date attached to a comparison matters just as much as checking the math itself.

## The Short Version
Vial price is what leaves your account on a given order. Price per mg is a normalized rate that removes packaging size from the comparison. They can move in opposite directions from each other, and reading a listing well means checking both rather than anchoring on whichever number happens to be printed largest.

*Note: figures and comparisons discussed here apply to laboratory research inventory only. Nothing in this article describes or implies guidance for use outside a research setting, and no outcomes or effects of any kind are implied.*

---

## About This Package

`peptide-cost-ref` provides reference calculators for peptide cost and reconstitution reference calculators for research use.

For additional research reference material, visit [peptidescost.us](https://peptidescost.us/).

## Installation

```bash
pip install peptide-cost-ref
```

## Quick Start

```python
import peptide_cost_ref

# Reconstitution calculator
volume = peptide_cost_ref.reconstitution_volume(vial_mg=10, target_mcg_per_ml=2000)
print(volume)  # 5.0 mL
```

See the [full reference](https://peptidescosts.com/author/) for more examples.
