Description Usage Arguments Value See Also Examples
This function initializes and, if necessary, creates the directory structure for output of analysis based on a provided base directory. A /results/ folder will be created in the base directory containing a complete directory structure for all possible results that can be generated by this package. All visualizations and data aggregation tools rely on this directory structure for data output. Note that this function will NOT overwrite existing directories. Initialization of data directories should be performed separately using init_data_paths().
1 | create_dir_struct(base_dir)
|
base_dir |
Base directory in which to build directory structure for result output. |
This function does not return a value.
init_data_paths
, set_output_mode
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | ## Not run:
#Initialize a DEVis directory structure at a base directory.
create_dir_struct(base_dir="/Users/adam/projects/ebola/")
This command will create the following folders:
/Users/adam/projects/ebola/
/results/
/DE/
/boxplot/
/counts/
/data/
/density_plots/
/divergence/
/heatmaps/
/profile_plots/
/series_plots/
/volcano/
/dendrograms/
/geneplots/
/group_stats/
/MDS/
/standard/
/hulls/
/sample_distance/
/euclidian/
/poisson/
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.