@@ -30,7 +30,7 @@ This documentation serves two distinct purposes:
30301 . For developers using ` tskit ` in their own applications, it provides normative documentation
3131 for how provenance information should be stored.
32322 . For end-users of ` tskit ` , it provides documentation to allows them to inspect and interpret
33- the provenance information stored in ` .trees ` files.
33+ the provenance information stored in ` .arg ` files.
3434
3535Provenance information is encoded using [ JSON] ( https://www.json.org/ ) .
3636To standardise the provenance information produced by different software and improve
@@ -167,7 +167,7 @@ here even though it was automatically generated.
167167Consider the following invocation of a hypothetical command line program:
168168
169169``` bash
170- $ supersim --sample-size=10 --do-some-stuff -O out.trees
170+ $ supersim --sample-size=10 --do-some-stuff -O out.arg
171171```
172172
173173We recommend encoding the parameters provenance as follows (other fields omitted
@@ -177,7 +177,7 @@ for clarity):
177177{
178178 "parameters" : {
179179 "command" : " supersim" ,
180- "args" : [" --sample-size=10" , " --do-some-stuff" , " -O" , " out.trees " ],
180+ "args" : [" --sample-size=10" , " --do-some-stuff" , " -O" , " out.arg " ],
181181 "random_seed" : 56789
182182 }
183183}
@@ -245,7 +245,7 @@ account for resource usage across pipelines of tools.
245245## Full schema
246246
247247This schema is formally defined using [JSON Schema](http://json-schema.org/) and
248- given in full here. Developers writing provenance information to `.trees ` files
248+ given in full here. Developers writing provenance information to `.arg ` files
249249should validate the output JSON against this schema.
250250
251251```{eval-rst }
0 commit comments