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

Issue with sequencing clustering with 10x paired BCR data #418

Open
meredithramba opened this issue Nov 18, 2024 · 0 comments
Open

Issue with sequencing clustering with 10x paired BCR data #418

meredithramba opened this issue Nov 18, 2024 · 0 comments

Comments

@meredithramba
Copy link

Hello,

I am trying to run your BCR pipeline on my 10x Genomics BCR sequencing data. I am able to load in the data and get as far as clustering, but when I run the pipeline (code below), I end up with an error message:

immdata <- repLoad("BCR", .mode="paired")
distBCR <- seqDist(immdata$data %>% top(500))
immdata$data <- seqCluster(immdata$data %>% top(500), distBCR, .perc_similarity = 0.9)
immdata$data %>%
  repGermline(.threads = 1)

Screenshot 2024-11-18 at 4 24 03 PM

I did some poking around with your example data set to find the differences between my data and yours. Specifically, I find that the V.name column looks different.
Screenshot 2024-11-18 at 4 26 31 PM

However, in your tutorial working with paired chain data, I see that the V.name column looks the same as mine. When I run this dataset using the functions in the BCR pipeline (seqDist, then seqCluster), I get a very similar looking error message.

file_path <- paste0(system.file(package = "immunarch"), "/extdata/sc/flu.csv.gz")
igdata <- repLoad(file_path, .mode = "paired")
distBCR_3 <- seqDist(igdata$data %>% top(500))
igdata$data <- seqCluster(igdata$data %>% top(500), distBCR_3, .perc_similarity = 0.9)
#generate germline
igdata$data %>%
  repGermline(.threads = 1)

Screenshot 2024-11-18 at 4 31 21 PM

Do you know how to fix this?

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant