2020-02-28 03:29:53 +00:00
|
|
|
using Pkg
|
|
|
|
using Documenter, XAM
|
|
|
|
|
|
|
|
makedocs(
|
2021-04-28 01:48:47 +00:00
|
|
|
checkdocs = :all,
|
|
|
|
linkcheck = true,
|
2020-02-28 03:29:53 +00:00
|
|
|
format = Documenter.HTML(
|
|
|
|
edit_link = "develop"
|
|
|
|
),
|
|
|
|
modules = [XAM, XAM.SAM, XAM.BAM],
|
|
|
|
sitename = "XAM.jl",
|
|
|
|
pages = [
|
|
|
|
"Home" => "index.md",
|
|
|
|
"SAM and BAM" => "man/hts-files.md",
|
|
|
|
"API Reference" => "man/api.md"
|
|
|
|
],
|
|
|
|
authors = replace(join(Pkg.TOML.parsefile("Project.toml")["authors"], ", "), r" <.*?>" => "" ) * ", The BioJulia Organisation, and other contributors."
|
|
|
|
)
|
|
|
|
deploydocs(
|
|
|
|
repo = "github.com/BioJulia/XAM.jl.git",
|
|
|
|
devbranch = "develop",
|
|
|
|
push_preview = true
|
|
|
|
)
|