get_missing.py

Given an input file containing record names, one per row, indicates whether the record exists by outputting a 1 if it exists and a 0 if it doesn’t. The input file of record names will be first sorted and deduplicated.

usage: get_missing.py [-h] -m MODEL -i INFILE -o OUTFILE

Named Arguments

-m, --model
The name of the model to import the records to, i.e. Biosample or CrisprModification.
-i, --infile
One or more record names, one per line.
-o, --outfile
The output file with two columns: 1) name, 2) status (1 for present, 0 for absent).