Skip to content

Commit

Permalink
export dagfindr!
Browse files Browse the repository at this point in the history
  • Loading branch information
tmichoel committed Apr 27, 2024
1 parent dcb26fe commit 3ed9b8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "BioFindr"
uuid = "77580646-997d-4218-a3cc-42097ecd1c68"
authors = ["tmichoel <11647967+tmichoel@users.noreply.github.com> and contributors"]
version = "1.0.2"
version = "1.0.3"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand Down
2 changes: 1 addition & 1 deletion src/BioFindr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ using Graphs
using MetaGraphsNext

# Export statements
export findr
export findr, dagfindr!

# Define test names as variables

Expand Down
2 changes: 1 addition & 1 deletion src/bayesiannets.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
dagfindr(dP::T; method="greedy edges") where T<:AbstractDataFrame
dagfindr!(dP::T; method="greedy edges") where T<:AbstractDataFrame
Convert a DataFrame `dP` of [`findr`](@ref) results (list of edges) to a directed acyclic graph (DAG) using the specified `method`. The output is a directed graph
represented as a [`SimpleDiGraph`](https://juliagraphs.org/Graphs.jl/stable/core_functions/simplegraphs/#Graphs.SimpleGraphs.SimpleDiGraph) from the [`Graphs`](https://github.com/JuliaGraphs/Graphs.jl) package. The `method` can be any of
Expand Down

2 comments on commit 3ed9b8f

@tmichoel
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 register

Release notes:

added dagfindr! to exported functions

@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/105714

Tagging

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 v1.0.3 -m "<description of version>" 3ed9b8fef2431b528d0ab34e4a2e5d27830da46f
git push origin v1.0.3

Please sign in to comment.