Skip to content

Commit

Permalink
Merge pull request #38 from kescobo/v0-6
Browse files Browse the repository at this point in the history
v0.6
  • Loading branch information
kescobo authored Jan 10, 2020
2 parents 1c8cc31 + e8a0dae commit 87d887a
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
jobs:
TagBot:
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords = ["microbiology", "microbiome", "biology"]
license = "MIT"
desc = "Functions for working with microbial community data"
authors = ["kescobo <[email protected]>"]
version = "0.5.1"
version = "0.6.0"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ Microbiome = "3bd8f0ae-a0f2-5238-a5af-e1b399a4940c"
SpatialEcology = "348f2d5d-71a3-5ad4-b565-8af070f99681"

[compat]
Documenter = "~0.22"
Documenter = "0.24"
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ makedocs(

deploydocs(
repo = "github.com/BioJulia/Microbiome.jl.git",
push_preview=true
)
6 changes: 3 additions & 3 deletions docs/src/abundances.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Forgive the clutter... ComMatricies name rows as species (which is true in this
case, but need not be), and columns are "sites" rather than samples. That will
be fixed eventually.

```@example 1
```@repl 1
samplenames(abund)
featurenames(abund)
sampletotals(abund) # this is column sums
Expand All @@ -31,7 +31,7 @@ featuretotals(abund) # this is row sums
If you want relative abundance, you can do `relativeabundance(abund)` or
`relativeabundance!(abund)`:

```@example 1
```@repl 1
relativeabundance!(abund);
sampletotals(abund)
Expand All @@ -42,7 +42,7 @@ function automatically generates an `n+1` row for `other` containing the
remaining features. Note - these doesn't modify in-place, so you've gotta
reassign if you want to update:

```@example 1
```@repl 1
abund2 = filterabund(abund, 1);
featurenames(abund2)
Expand Down
4 changes: 4 additions & 0 deletions docs/src/distances.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Quite often, it's useful to boil stuff down to distances between samples.
from [`Distances.jl`](https://github.com/JuliaStats/Distances.jl)
to get a symetric distance matrix.


At the moment,
this only works if you're on SpatialEcology.jl's master branch.

```@example 2
using Distances
using Microbiome
Expand Down

2 comments on commit 87d887a

@TransGirlCodes
Copy link
Contributor

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/15298

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.6.0 -m "<description of version>" 87d887aabb277b41a08ad83770a971f911af86fd
git push origin v0.6.0

Please sign in to comment.