Writing JSON Serialised Objects#

Using JSON, we can serialise cogent3 objects to a file for easy storage and retrieval.

Create an example object to serialise#

Let’s create a LikelihoodFunction object to use in this example. It is generated from fitting the General Nucleotide (GN) model to an alignment of BRCA1 in primates.

from cogent3 import get_app

# Load the alignment
load_aligned_app = get_app("load_aligned", moltype="dna", format="fasta")
aln = load_aligned_app("data/primate_brca1.fasta")

# Fit the GN model
gn_model_app = get_app("model", "GN", tree="data/primate_brca1.tree")
model_result = gn_model_app(aln)
model_result.lf

GN

log-likelihood = -6987.9604

number of free parameters = 22

Global params
A>CA>GA>TC>AC>GC>TG>AG>CG>TT>A
0.86993.66400.91101.59072.12456.02408.22121.22950.62961.2502
continuation
T>C
3.4168
Edge params
edgeparentlength
Galagoroot0.1734
HowlerMonroot0.0450
Rhesusedge.30.0215
Orangutanedge.20.0078
Gorillaedge.10.0025
Humanedge.00.0061
Chimpanzeeedge.00.0028
edge.0edge.10.0000
edge.1edge.20.0033
edge.2edge.30.0121
edge.3root0.0077
Motif params
ACGT
0.37570.17420.20950.2406

write_json - writing JSON-serialised object to file#

Using the write_json app, we can write out the likelihood function as a JSON-serialised object, making it easy to retrieve the model parameters for future reference if required.

We need to provide the write_json app with a data store to which it will write. Optionally when we apply the app we can specify an identifier for the data, which will name the file.

from cogent3 import get_app, open_data_store

# Initialise the write_json app with a data store
out_dstore = open_data_store(path_to_dir, mode="w", suffix="json")
write_json_app = get_app("write_json", data_store=out_dstore)

write_json_app(model_result.lf, identifier="gn_params.json")
DataMember(data_store=/home/runner/work/cogent3.github.io/cogent3.github.io/c3org/doc/doc/tmph2_tyo82, unique_id=gn_params.json)

Note

Learn how to load a JSON serialised object in the loading JSON serialised objects section!

Tip

When running this code on your machine, remember to replace path_to_dir with an actual directory path.