View source: R/00_run_full_analysis.R
make_corecmotifs | R Documentation |
Creates a list of CoRecMotifs using fluorescence data
from a CoRec experiment. This is a convenience function that calls
annotate_fluorescence_table()
, fluorescence_to_zscore_table()
, and then
zscore_table_to_corecmotifs()
.
make_corecmotifs(
fluorescence_table,
fluorescence_columns,
annotation,
array_id = NULL,
output_directory = NULL,
output_base_name = NULL
)
fluorescence_table |
|
fluorescence_columns |
|
annotation |
|
array_id |
|
output_directory |
|
output_base_name |
|
By default no output files are created. To save output files, you must
provide output_directory
, output_base_name
, or both. The output files are
named according to the following rules.
If output_directory
is provided but output_base_name
is not, the files
will be saved in the provided directory using the base name "output".
If output_base_name
is provided but output_directory
is not, the files
will be saved in the working directory using the provided base name.
If array_id
is provided, it will be appended to the output base name.
The individual output file names will be identified by a suffix appended to the output base name after the array ID (if present).
The output of annotate_fluorescence_table()
will have the suffix
"fluorescence.tsv".
The output of fluorescence_to_zscore_table()
will have the suffix
"zscores.tsv"
The output of zscore_table_to_corecmotifs()
will have the suffix
"all_corecmotifs.rds"
A list of CoRecMotifs, one for each possible
combination of the probe sets annotated in annotation
and the PBM
conditions listed in pbm_conditions
.
annotate_fluorescence_table()
, fluorescence_to_zscore_table()
,
zscore_table_to_corecmotifs()
print("FILL THIS IN!")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.