create_dir_struct: Initialize the directory structure for automatically storing...

Description Usage Arguments Value See Also Examples

Description

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().

Usage

1

Arguments

base_dir

Base directory in which to build directory structure for result output.

Value

This function does not return a value.

See Also

init_data_paths, set_output_mode

Examples

 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)

DEVis documentation built on May 2, 2019, 3:18 p.m.