Learn R Programming

GRANCore (version 0.2.7)

logfile: Log file location of a GRAN (sub) repository

Description

Accessors

Usage

logfile(repo)

# S4 method for GRANRepository logfile(repo)

# S4 method for RepoBuildParam logfile(repo)

# S4 method for GRANRepository dep_repos(x)

repo_name(x)

# S4 method for GRANRepository repo_name(x)

temp_repo(x)

# S4 method for GRANRepository temp_repo(x)

check_warn_ok(x)

# S4 method for GRANRepository check_warn_ok(x)

check_note_ok(x)

# S4 method for GRANRepository check_note_ok(x)

suspended_pkgs(x)

# S4 method for GRANRepository suspended_pkgs(x)

suspended_pkgs(x) <- value

# S4 method for GRANRepository suspended_pkgs(x) <- value

# S4 method for GRANRepository sh_init_script(x)

# S4 method for GRANRepository sh_init_script(x) <- value

extra_fun(x)

# S4 method for GRANRepository extra_fun(x)

check_test_on(x)

# S4 method for RepoBuildParam check_test_on(x)

# S4 method for GRANRepository check_test_on(x)

install_test_on(x)

# S4 method for RepoBuildParam install_test_on(x)

# S4 method for GRANRepository install_test_on(x)

# S4 method for GRANRepository logfun(x)

# S4 method for GRANRepository logfun(x) <- value

use_cran_granbase(x)

use_cran_granbase(x) <- value

# S4 method for GRANRepository use_cran_granbase(x)

# S4 method for GRANRepository use_cran_granbase(x) <- value

# S4 method for RepoBuildParam use_cran_granbase(x)

# S4 method for RepoBuildParam use_cran_granbase(x) <- value

check_timeout(x)

check_timeout(x) <- value

# S4 method for GRANRepository check_timeout(x)

# S4 method for GRANRepository check_timeout(x) <- value

# S4 method for RepoBuildParam check_timeout(x)

# S4 method for RepoBuildParam check_timeout(x) <- value

build_timeout(x)

build_timeout(x) <- value

# S4 method for GRANRepository build_timeout(x)

# S4 method for GRANRepository build_timeout(x) <- value

# S4 method for RepoBuildParam build_timeout(x)

# S4 method for RepoBuildParam build_timeout(x) <- value

pkg_log_dir(x)

# S4 method for RepoBuildParam pkg_log_dir(x)

# S4 method for GRANRepository pkg_log_dir(x)

pkg_log_file(pkg, x)

# S4 method for ANY,RepoBuildParam pkg_log_file(pkg, x)

# S4 method for ANY,GRANRepository pkg_log_file(pkg, x)

platform(x)

platform(x) <- value

# S4 method for GRANRepository platform(x)

# S4 method for GRANRepository platform(x) <- value

r_version(x)

r_version(x) <- value

# S4 method for GRANRepository r_version(x)

# S4 method for GRANRepository r_version(x) <- value

bioc_version(x)

bioc_version(x) <- value

# S4 method for GRANRepository bioc_version(x)

# S4 method for GRANRepository bioc_version(x) <- value

Arguments

repo

a GRANRepository object

x

A GRANRepository object

value

The new parameter value

pkg

The package name, accepted by pkg_log_file.

Value

file location of the full logfile

Details

Set or retrieve the relevant values from a GRANRepository object

These functions get or set individual repository build parameters on a GRANRepository object.

See Also

RepoBuildParam

Examples

Run this code
# NOT RUN {
repo = GRANRepository(GithubManifest("gmbecker/fastdigest"), basedir = tempdir())
# parameter object
param(repo)
##fundamental sub-objects
manifest(repo)
repo_results(repo)
##important directories
repobase(repo)
staging(repo)
temp_lib(repo)
notrack(repo)
destination(repo)
dest_base(repo)
windowsbindir(repo)
archivedir(repo)
metadatadir(repo)
check_result_dir(repo)
backup_archive(repo)
coverage_report_dir(repo)
pkg_doc_dir(repo)
install_result_dir(repo)
repo_url(repo)
checkout_dir(repo)
## logging
logfile(repo)
errlogfile(repo)
staging_logs(repo)
pkg_log_dir(repo)
pkg_log_file("switchr", repo)
## email and other behavior
email_options(repo)
email_notify(repo)
## miscellaneous
make_windows_bins(repo)
use_cran_granbase(repo)
check_timeout(repo)
build_timeout(repo)
platform(repo)
r_version(repo)
bioc_version(repo)

# }

Run the code above in your browser using DataLab