We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Per #475
Selecting an individual TRB chain in clonalCompare creates an error:
clonalCompare
combined.TCR <- combineTCR(contig_list, samples = c("P17B", "P17L", "P18B", "P18L", "P19B","P19L", "P20B", "P20L")) clonalCompare(combined.TCR, chain = "TRB")
Error: chain is not in c("both", "TRA", "TRG", "IGH", "IGL")
The text was updated successfully, but these errors were encountered:
update clonalCompare
0ea7dea
Expanded assertthat for TRB and TRD per issue per issue #476
There was an assert that statement that in did not include all of the chains - now fixed:
is.string(chain), chain %in% c("both", "TRA", "TRB", "TRG", "TRD", "IGH", "IGL")
Here is the updated example:
combined.TCR <- combineTCR(contig_list, samples = c("P17B", "P17L", "P18B", "P18L", "P19B","P19L", "P20B", "P20L")) clonalCompare(combined.TCR, chain = "TRB") clonalCompare(combined.TCR[1:2], chain = "TRB", top.clones = 10)
Sorry, something went wrong.
Hi @ncborcherding is it possible to add "IGK" as well? Or is there a reason it is excluded as a chain option?
ncborcherding
No branches or pull requests
Per #475
Selecting an individual TRB chain in
clonalCompare
creates an error:Error: chain is not in c("both", "TRA", "TRG", "IGH", "IGL")
The text was updated successfully, but these errors were encountered: