Skip to content

Commit

Permalink
v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mmkim1210 committed Oct 2, 2022
1 parent c1cd08b commit 5d75f33
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GeneticsMakie"
uuid = "8ca62643-82d8-47b5-a233-a06d1654fb35"
authors = ["Minsoo <[email protected]> and contributors"]
version = "0.1.4"
version = "0.1.5"

[deps]
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ makedocs(;
"Plotting GWAS" => "examples/gwas.md",
"Plotting TWAS" => "examples/twas.md",
"Plotting loops" => "examples/loops.md",
"Plotting peaks" => "examples/chip.md"],
"Plotting peaks" => "examples/peaks.md"],
"API" => "api.md",
],
)
Expand Down
11 changes: 2 additions & 9 deletions docs/src/examples/chip.md → docs/src/examples/peaks.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
# Plotting ChIP-seq and ATAC-seq
# Plotting peaks

Epigenetic sequencing is another data modality of interest that we can
visualize with [__Makie.jl__](https://makie.juliaplots.org/stable/) and
GeneticsMakie.jl. Chromatin immunoprecipitation sequencing (ChIP-seq) and assay
for transposase-accessible chromatin with high-throughput sequencing (ATAC-seq)
map epigenetic modifications throughout the genome by identifying DNA-protein
interaction sites and open chromatin respectively, and although they capture
different aspects of the epigenome, their resulting data share the same form
and function (BAM files to capture reads, wiggle files to capture coverage and
signal, BED files to capture peaks). Consequently, visualizing both types of
sequencing will follow the same workflow.
GeneticsMakie.jl. ChIP-seq and ATAC-seq map epigenetic modifications throughout the genome by identifying DNA-protein interaction sites and open chromatin respectively, and although they capture different aspects of the epigenome, their resulting data share the same form and function (i.e. BAM files to capture reads, wiggle files to capture coverage and signal, BED files to capture peaks). Consequently, visualizing both types of data will follow the same workflow.

We will start with the annotation from [Parsing GENCODE](@ref). Accompanying
ChIP-seq data will be downloaded from the
Expand Down
1 change: 1 addition & 0 deletions src/plotloops.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ function ellipse(x, a, b)
end
abs(b) * sqrt(1 - x^2/a^2)
end

function drawloop!(
ax::Axis,
pairedends,
Expand Down

2 comments on commit 5d75f33

@mmkim1210
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/69384

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.5 -m "<description of version>" 5d75f3394071ecaefe6004070b94ea4f11a6ca30
git push origin v0.1.5

Please sign in to comment.