mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-14 22:33:14 +00:00
22 lines
579 B
Julia
22 lines
579 B
Julia
|
using Pkg
|
||
|
using Documenter, XAM
|
||
|
|
||
|
makedocs(
|
||
|
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
|
||
|
)
|