Make printable QR code labels for samples using basic information about a project.
Labelmaker has been tested on macOS and Linux. It requires the following software:
- Conda
- TeX Live
- Labelmaker (this repository)
If you don't have Conda installed on your machine, install Miniconda for your operating system (Python 3.7+ version).
Create a conda environment called labels
where you will install the package qrcode
:
conda create -n labels pandas click python=3
source activate labels
pip install qrcode[pil]
Tex Live provides a comprehensive TeX system with binaries for macOS, Linux, and Windows; you can download it here. We will use lualatex
. A TeX installation is not absolutely required, but it is required to render a label sheet (PDF) from the individual label image files (PNG).
Clone the Labelmaker repository to your computer:
git clone https://github.com/aomlomics/labelmaker
cd labelmaker
To run Labelmaker inside a Docker container:
- Install Docker Desktop (Mac, Windows, or Linux) from Docker.com.
- Open Docker app.
- Download the Docker image from DockerHub (command below).
- Run the Docker image (command below).
docker pull aomlomics/labelmaker
docker run -v $HOME:/data -it aomlomics/labelmaker
If installing on a Mac with an Apple Silicon chip, run the Docker image with the --platform linux/amd64
command. It will take a few minutes for the image to load the first time it is run.
docker run --platform linux/amd64 -v $HOME:/data -it aomlomics/labelmaker
The -v
(volume) flag above allows you to mount a local file system volume (in this case your home directory) to read/write from your container. Note that symbolic links in a mounted volume will not work.
Make a sheet of labels in three easy steps:
- Generate the labels as PNG files.
- Generate a composite sheet of labels as a PDF file.
- Print!
Run the command generate_labels.py
with the required parameters. To learn more about each parameter, run ./generate_labels.py --help
. Two options for sample names are available:
If a list of sample names is provided, those sample names are used. The sample list should be provided as a text file with one sample name per line (no spaces). If the number of replicates N is greater than 1 (default), replicate labels are produced from 1 to N.
./generate_labels.py \
--project ProjectX \
--contact MySurname \
--date 180929 \
--sample_list sample_list.txt \
--num_replicates 1 \
--separator '_'
If no list of sample names is provided, samples are named from 1 to M, where M is the specified number of samples. If the number of replicates N is greater than 1 (default), replicate labels are produced from 1 to N.
./generate_labels.py \
--project Challenger1 \
--contact Thomson \
--date 1872–1876 \
--num_samples 5 \
--num_replicates 2
Labelmaker produces letter size PDF files intended to be printed on Cryo-Babies label sheets, part number LCRY-1700 (Diversified Biotech). These are 1.28-inch x 0.5-inch labels in a grid of 5 x 17 labels.1
Label sheets are generated from TeX files using lualatex
. If the number of samples including replicates exceeds 85 (the number of labels per sheet), multiple TeX files will be produced and should be converted to PDF.
Run lualatex
from the directory containing the PNG files and TeX file using the commands below.
cd /PATH/TO/labelmaker/labels_Project1
lualatex labelsheet1_Project1_LCRY1700.tex
cd /PATH/TO/labelmaker/labels_Project2
lualatex labelsheet1_Project2_LCRY1700.tex
Open the resulting PDF file (e.g., labelsheet1_Project1_LCRY1700.pdf
) and print on a sheet of Cryo-Babies LCRY-1700 labels.
Example:
1 Although the physical labels are 1.28 x 0.5 inches, the Python code and TeX code are calibrated for labels with size 1.05 x 0.5 inches or an aspect ratio of 2.1:1 (width:height). By default, generate_labels.py
will produce PNG files with dimensions 1.05 x 0.5 inches. The user should not change these defaults if they intend to use the commands below to generate label sheets.
This repository is a scientific product and is not official communication of the National Oceanic and Atmospheric Administration, or the United States Department of Commerce. All NOAA GitHub project code is provided on an ‘as is’ basis and the user assumes responsibility for its use. Any claims against the Department of Commerce or Department of Commerce bureaus stemming from the use of this GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce. The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government.