From d8fa79e62c7b54f067e7e61c8182c25a556ee3aa Mon Sep 17 00:00:00 2001 From: gszep Date: Tue, 24 Aug 2021 11:38:14 +0100 Subject: [PATCH] do not drop intermediate gates by default --- Project.toml | 2 +- src/FlowAtlas.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index a0b09fc..cb26498 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "FlowAtlas" uuid = "ef7debb3-0d09-4604-8960-6109d4c5b3e0" authors = ["gszep "] -version = "0.1.4" +version = "0.1.5" [deps] CSVFiles = "5d742f6a-9f54-50ce-8119-2520741973ca" diff --git a/src/FlowAtlas.jl b/src/FlowAtlas.jl index fac514f..5d2d4b4 100644 --- a/src/FlowAtlas.jl +++ b/src/FlowAtlas.jl @@ -52,7 +52,7 @@ const extensions = JSServe.Dependency( :extensions, map( extension -> joinpath( )) function run( path::String; files::String=joinpath(dirname(path),"*.fcs"), transform::Function=x->asinh(x/250), - port::Int = 3141, url::String = "http://localhost:$port", cols::Symbol=:union, drop::Union{Vector{String},Nothing}=nothing, + port::Int = 3141, url::String = "http://localhost:$port", cols::Symbol=:union, drop::Union{Vector{String},Nothing}=String[], nlevels::Int=10, channelRange = range(-3,7,length=50), channelScheme=reverse(ColorSchemes.matter), labelScheme=ColorSchemes.seaborn_colorblind, perplexity=300, maxIter=10000 )