Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

By default, exclude specific intersections that have size = 0 #223

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Nov 9, 2021

  1. By default, exclude specific intersections that have size = 0

    This helps when dealing with a big dataset, where you might wish to select all intersections with one Set but not others. 
    
    small code example for all 2 by 2 combinations with myTargetSet:
    
    c2<-combn(names( MySetList ) ,2)[,grep("myTargetSet",combn(names( MySetList ),2)[1,])]
    list_of_lists <- apply(t(c2),1,list) )
    
    upset(fromList(ortholist) ,nsets = 81, nintersects=100
          ,queries= list(list (query = elements , 
                             params = list( "myTargetSet" ), color= "red" ,active = T) )  
          ,intersections = c(list( list( "myTargetSet" ) ),list_of_lists)
           )
    g1o authored Nov 9, 2021
    Configuration menu
    Copy the full SHA
    5ca5eb6 View commit details
    Browse the repository at this point in the history