GRANRepository-accessors: Log file location of a GRAN (sub) repository

Description Usage Arguments Details Value See Also Examples

Description

Accessors

Usage

  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
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
logfile(repo)

## S4 method for signature 'GRANRepository'
logfile(repo)

## S4 method for signature 'RepoBuildParam'
logfile(repo)

## S4 method for signature 'GRANRepository'
dep_repos(x)

repo_name(x)

## S4 method for signature 'GRANRepository'
repo_name(x)

temp_repo(x)

## S4 method for signature 'GRANRepository'
temp_repo(x)

check_warn_ok(x)

## S4 method for signature 'GRANRepository'
check_warn_ok(x)

check_note_ok(x)

## S4 method for signature 'GRANRepository'
check_note_ok(x)

suspended_pkgs(x)

## S4 method for signature 'GRANRepository'
suspended_pkgs(x)

suspended_pkgs(x) <- value

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

## S4 method for signature 'GRANRepository'
sh_init_script(x)

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

extra_fun(x)

## S4 method for signature 'GRANRepository'
extra_fun(x)

check_test_on(x)

## S4 method for signature 'RepoBuildParam'
check_test_on(x)

## S4 method for signature 'GRANRepository'
check_test_on(x)

install_test_on(x)

## S4 method for signature 'RepoBuildParam'
install_test_on(x)

## S4 method for signature 'GRANRepository'
install_test_on(x)

## S4 method for signature 'GRANRepository'
logfun(x)

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

use_cran_granbase(x)

use_cran_granbase(x) <- value

## S4 method for signature 'GRANRepository'
use_cran_granbase(x)

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

## S4 method for signature 'RepoBuildParam'
use_cran_granbase(x)

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

check_timeout(x)

check_timeout(x) <- value

## S4 method for signature 'GRANRepository'
check_timeout(x)

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

## S4 method for signature 'RepoBuildParam'
check_timeout(x)

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

build_timeout(x)

build_timeout(x) <- value

## S4 method for signature 'GRANRepository'
build_timeout(x)

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

## S4 method for signature 'RepoBuildParam'
build_timeout(x)

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

pkg_log_dir(x)

## S4 method for signature 'RepoBuildParam'
pkg_log_dir(x)

## S4 method for signature 'GRANRepository'
pkg_log_dir(x)

pkg_log_file(pkg, x)

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

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

platform(x)

platform(x) <- value

## S4 method for signature 'GRANRepository'
platform(x)

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

r_version(x)

r_version(x) <- value

## S4 method for signature 'GRANRepository'
r_version(x)

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

bioc_version(x)

bioc_version(x) <- value

## S4 method for signature 'GRANRepository'
bioc_version(x)

## S4 replacement method for signature '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.

Details

Set or retrieve the relevant values from a GRANRepository object

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

Value

file location of the full logfile

See Also

RepoBuildParam

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
31
32
33
34
35
36
37
38
39
40
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)

GRANCore documentation built on Feb. 4, 2020, 5:06 p.m.