View source: R/readImmunoSeq.R
readImmunoSeq | R Documentation |
readImmunoSeq()
Imports tab-separated value (.tsv) files exported by the
Adaptive Biotechnologies ImmunoSEQ analyzer, BGI IR-SEQ, MiXCR and stores
them as MiAIRR compliant tibble.
readImmunoSeq(path, recursive = FALSE, threads = parallel::detectCores()/2)
path |
Path to the directory containing tab-delimited files. Only files with the extension .tsv are imported. The names of the data frames are the same as names of the files. |
recursive |
A Boolean value
|
threads |
Number of threads. |
Returns a tibble with MiAIRR headers and repertoire_id
file_path <- system.file("extdata", "TCRB_sequencing",
package = "LymphoSeq2")
study_table <- LymphoSeq2::readImmunoSeq(
path = file_path, recursive = FALSE,
threads = 1
)
study_table <- LymphoSeq2::topSeqs(study_table, top = 100)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.