Skip to content

Commit

Permalink
Add paramlist(d::DataHR).
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-laforge committed Jul 31, 2020
1 parent c5a8af1 commit 02b493f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "MDDatasets"
uuid = "176e4ad4-9107-502a-977c-53a5728fe704"
version = "0.3.1"
version = "0.3.2"

[deps]
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Expand Down
7 changes: 7 additions & 0 deletions src/datahr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@ function coordinates(d::DataHR, subscr::Tuple=0)
return result
end

"""
paramlist(d::DataHR)
Return a list of parameter values being swept.
"""
paramlist(d::DataHR) = String[s.id for s in d.sweeps]


#==Help with construction
===============================================================================#
Expand Down

2 comments on commit 02b493f

@ma-laforge
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:

Add methods to support re-structuring of CMDimData.jl.

Also:

  • Improve documentation.

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

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.3.2 -m "<description of version>" 02b493f4cb9e646f4ce6b1864fe33707d96d48a4
git push origin v0.3.2

Please sign in to comment.