Using SpeedDate from a julia script or session

You can execute the SpeedDate program from within a julia console session or script.

To do this, create a dictionary of arguments and then give that to the SpeedDate.compute function.

using SpeedDate

options = Dict("model" => "jc69",
               "mutation_rate" => 10e-9,
               "method" => "default",
               "scan" => false,
               "onlydist" => false,
               "file" => "contig1_ac.fas",
               "outfile" => "test")

SpeedDate.compute(options)

The dictionary should have the following fields:

If you want to do the sliding window scan, the following should also be added to the dictionary:

Plotting SpeedDate results from a julia script or session

You can plot the results of the SpeedDate program from within a julia console session or script.

To do this, create a dictionary of arguments and then give that to the SpeedDate.visualize function.

using SpeedDate

options = Dict("width" => 12.0,
               "height" => 8.0,
               "units" => "cm",
               "backend" => "svg",
               "reference" => "default",
               "table" => false,
               "sortsim" => false,
               "inputfile" => "myresults.csv",
               "outputfile" => "myplot.svg")

SpeedDate.visualize(options)

The arguments dictionary should have the following fields: