You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
852 B
Julia

using Pkg
using Documenter
using SequenceVariation
using Revise
# see https://github.com/tlienart/LiveServer.jl/issues/140#issuecomment-1271591251
Revise.revise()
makedocs(;
checkdocs=:exports,
linkcheck=true,
sitename="SequenceVariation.jl",
format=Documenter.HTML(),
modules=[SequenceVariation],
pages=[
"Home" => "index.md",
"Working with haplotypes" => "haplotypes.md",
"Working with variations" => "variations.md",
"Comparing variations" => "compare.md",
"API Reference" => "api.md",
],
authors=replace(
join(Pkg.TOML.parsefile("Project.toml")["authors"], ", "), r" <.*?>" => ""
) * ", The BioJulia Organisation, and other contributors.",
)
deploydocs(;
repo="github.com/BioJulia/SequenceVariation.jl.git",
devbranch="master",
push_preview=true,
)