View source: R/import-functions.R
import_Vispa2_stats | R Documentation |
Imports all the Vispa2 stats files for each pool provided the association
file has been aligned with the file system
(see import_association_file
).
import_Vispa2_stats(
association_file,
file_prefixes = default_iss_file_prefixes(),
join_with_af = TRUE,
pool_col = "concatenatePoolIDSeqRun",
report_path = default_report_path()
)
association_file |
The file system aligned association file (contains columns with absolute paths to the 'iss' folder) |
file_prefixes |
A character vector with known file prefixes to match on file names. NOTE: the elements represent regular expressions. For defaults see default_iss_file_prefixes. |
join_with_af |
Logical, if |
pool_col |
A single string. What is the name of the pool column
used in the Vispa2 run? This will be used as a key to perform a join
operation with the stats files |
report_path |
The path where the report file should be saved.
Can be a folder or |
A data frame
The function will explicitly check for the presence of these tags:
project_id
tag_seq
vispa_concatenate
pcr_repl_id
Other Import functions:
import_association_file()
,
import_parallel_Vispa2Matrices()
,
import_single_Vispa2Matrix()
fs_path <- generate_default_folder_structure(type = "correct")
af <- import_association_file(fs_path$af,
root = fs_path$root,
import_iss = FALSE,
report_path = NULL
)
stats_files <- import_Vispa2_stats(af,
join_with_af = FALSE,
report_path = NULL
)
head(stats_files)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.