Skip to content

Commit

Permalink
Remove grouping that caused problems
Browse files Browse the repository at this point in the history
  • Loading branch information
mkborregaard committed Sep 25, 2018
1 parent 5f8da6f commit 75a8544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Grouping.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ groupspecies(a::EcoBase.AbstractAssemblage, s::Symbol) = groupspecies(a, a[s])
groupspecies(a::EcoBase.AbstractAssemblage, s::AbstractVector) = [view(a, species = [(!ismissing(y) && y == x) for y in s]) for x in sort(unique(s))]
const GroupedAssemblage = Vector{T} where T<:EcoBase.AbstractAssemblage

function show(io::IO, com::GroupedAssemblage{T}) where T
println(io, "GroupedAssemblage with $(length(com)) $(T)s")
function show(io::IO, com::GroupedAssemblage)
println(io, "GroupedAssemblage with $(length(com)) assemblages")
end

0 comments on commit 75a8544

Please sign in to comment.