Closed jakob-arnold closed 1 month ago
Hey Jakob,
Should be fixed from this issue: #405
Try installing the current main branch with: devtools::install_github("ncborcherding/scRepertoire")
This might also solve the include.self issue, as that is in the current version on the main repo
Hope that helps and let me know if the problem persists - make sure to restart your R session after updating.
Thanks, Nick
Hi,
Thank you so much for the great package!
I want to use the
getCirclize()
function and use a custom variable for thecloneCall
argument. I noticed a bug in this functionWhen I try running the following code
chord.df <- getCirclize(gd, cloneCall="TRD_strict", group.by = "cluster", proportion=F)
I get an error
Warning in .convertClonecall(x) : A custom variable trd_strict will be used to call clones Error in .theCall(meta, cloneCall) : Check the clonal variable (cloneCall) being used in the function, it does not appear in the data provided.
I noticed, that in the error it says "A custom variable trd_strict will be used to call clones". When I change the variable to be all lower case letters, it works. I guess, there is an issue with letter casing?
Also on a side note: In the documentation, the
include.self
argument is mentioned. However, it seems like that argument is not implemented yet, right?Error in getCirclize(gd, cloneCall = "TRD_strict", group.by = "cluster", : unused argument (include.self = T)
Best Jakob