generate_Vispa2_launch_AF {ISAnalytics} | R Documentation |
The function selects the appropriate columns and prepares a file for the launch of Vispa2 pipeline for each project/pool pair specified.
generate_Vispa2_launch_AF(association_file, project, pool, path)
association_file |
The imported association file (via
|
project |
A vector of characters containing project names |
pool |
A vector of characters containing pool names. NOTE: the names should refer to the values contained in the PoolID column of the association file and NOT the concatenatePoolIDSeqRun column! |
path |
A single string representing the path to the folder where files should be written. If the folder doesn't exist it will be created. |
Note: the function is vectorized, meaning you can specify more than one project and more than one pool as vectors of characters, but you must ensure that:
Both project
and pool
vectors have the same length
You correclty type names in corresponding positions, for example c("CLOEXP", "PROJECT1100", "PROJECT1100") - c("POOL6", "ABX-LR-PL5-POOL14-1", "ABX-LR-PL6-POOL15-1"). If you type a pool in the position of a corresponding project that doesn't match no file will be produced since that pool doesn't exist in the corresponding project.
returns NULL
Other Utility functions:
as_sparse_matrix()
,
generate_blank_association_file()
,
unzip_file_system()
temp <- tempdir() data("association_file", package = "ISAnalytics") generate_Vispa2_launch_AF(association_file, "PJ01", "POOL01", temp)