Skip to content

Commit 94a25b0

Browse files
authored
Merge pull request #20 from NorwegianVeterinaryInstitute/dev
OKplan v0.7.1
2 parents 8d43466 + cac35e0 commit 94a25b0

20 files changed

+315
-291
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212
^Meta$
1313
^OKplan.Rcheck\vign_test$
1414
^CONTRIBUTING\.md
15+
^LICENSE\.md

CONTRIBUTING.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,48 +39,54 @@ some NVIverse functions</td>
3939
databases</td>
4040
</tr>
4141
<tr class="odd">
42+
<td style="text-align: left;">NVIpjsr</td>
43+
<td style="text-align: left;">Public</td>
44+
<td style="text-align: left;">Tools to facilitate working with PJS
45+
data</td>
46+
</tr>
47+
<tr class="even">
4248
<td style="text-align: left;">NVIspatial</td>
4349
<td style="text-align: left;">Public</td>
4450
<td style="text-align: left;">Tools to facilitate working with spatial
4551
data at NVI</td>
4652
</tr>
47-
<tr class="even">
53+
<tr class="odd">
4854
<td style="text-align: left;">NVIpretty</td>
4955
<td style="text-align: left;">Public</td>
5056
<td style="text-align: left;">Tools to make R-output pretty in accord
5157
with NVI’s graphical profile</td>
5258
</tr>
53-
<tr class="odd">
59+
<tr class="even">
5460
<td style="text-align: left;">NVIbatch</td>
5561
<td style="text-align: left;">Public</td>
5662
<td style="text-align: left;">Tools to facilitate the running of
5763
R-scripts in batch mode at NVI</td>
5864
</tr>
59-
<tr class="even">
65+
<tr class="odd">
6066
<td style="text-align: left;">OKplan</td>
6167
<td style="text-align: left;">Public</td>
6268
<td style="text-align: left;">Tools to facilitate the planning of
6369
surveillance programmes for the NFSA</td>
6470
</tr>
65-
<tr class="odd">
71+
<tr class="even">
6672
<td style="text-align: left;">OKcheck</td>
6773
<td style="text-align: left;">Public</td>
6874
<td style="text-align: left;">Tools to facilitate checking of data from
6975
national surveillance programmes</td>
7076
</tr>
71-
<tr class="even">
77+
<tr class="odd">
7278
<td style="text-align: left;">NVIcheckmate</td>
7379
<td style="text-align: left;">Public</td>
7480
<td style="text-align: left;">Extension of checkmate with argument
7581
checking adapted for NVIverse</td>
7682
</tr>
77-
<tr class="odd">
83+
<tr class="even">
7884
<td style="text-align: left;">NVIpackager</td>
7985
<td style="text-align: left;">Public</td>
8086
<td style="text-align: left;">Tools to facilitate the development of
8187
NVIverse packages</td>
8288
</tr>
83-
<tr class="even">
89+
<tr class="odd">
8490
<td style="text-align: left;">NVIrpackages</td>
8591
<td style="text-align: left;">Public</td>
8692
<td style="text-align: left;">Keeps a table of the R packages in

DESCRIPTION

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: OKplan
22
Title: Tools to facilitate the Planning of the annual Surveillance Programmes
3-
Version: 0.7.0
4-
Date: 2024-01-05
3+
Version: 0.7.1
4+
Date: 2024-11-12
55
Authors@R:
66
c(person(given = "Petter",
77
family = "Hopp",
@@ -14,20 +14,20 @@ Description: Provide tools to facilitate the planning of the annual surveillance
1414
NFSA.
1515
URL: https://github.com/NorwegianVeterinaryInstitute/OKplan
1616
BugReports: https://github.com/NorwegianVeterinaryInstitute/OKplan/issues
17-
Depends: R (>= 3.5.0)
17+
Depends: R (>= 4.1.0)
1818
License: BSD_3_clause + file LICENSE
1919
Encoding: UTF-8
2020
LazyData: true
2121
Imports:
2222
checkmate,
2323
dplyr,
24-
magrittr,
2524
openxlsx,
2625
rlang,
2726
stats,
2827
NVIbatch (>= 0.4.0),
2928
NVIcheckmate (>= 0.7.3),
30-
NVIdb (>= 0.3.0),
29+
NVIdb,
30+
NVIpjsr,
3131
NVIpretty (>= 0.4.0),
3232
OKcheck
3333
Suggests:
@@ -47,10 +47,11 @@ Remotes:
4747
NorwegianVeterinaryInstitute/NVIbatch,
4848
NorwegianVeterinaryInstitute/NVIcheckmate,
4949
NorwegianVeterinaryInstitute/NVIdb,
50-
NorwegianVeterinaryInstitute/NVIpretty,
5150
NorwegianVeterinaryInstitute/NVIpackager,
51+
NorwegianVeterinaryInstitute/NVIpjsr,
52+
NorwegianVeterinaryInstitute/NVIpretty,
5253
NorwegianVeterinaryInstitute/NVIrpackages,
5354
NorwegianVeterinaryInstitute/OKcheck
54-
RoxygenNote: 7.2.3
55+
RoxygenNote: 7.3.1
5556
VignetteBuilder: knitr
5657
Language: en-GB

LICENSE

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,3 @@
1-
BSD 3-Clause License
2-
3-
Copyright (c) 2020 - 2024 Norwegian Veterinary Institute
4-
All rights reserved.
5-
6-
Redistribution and use in source and binary forms, with or without
7-
modification, are permitted provided that the following conditions are met:
8-
9-
1. Redistributions of source code must retain the above copyright notice, this
10-
list of conditions and the following disclaimer.
11-
12-
2. Redistributions in binary form must reproduce the above copyright notice,
13-
this list of conditions and the following disclaimer in the documentation
14-
and/or other materials provided with the distribution.
15-
16-
3. Neither the name of the copyright holder nor the names of its
17-
contributors may be used to endorse or promote products derived from
18-
this software without specific prior written permission.
19-
20-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1+
YEAR: 2020 - 2024
2+
COPYRIGHT HOLDER: Norwegian Veterinary Institute
3+
ORGANIZATION: Norwegian Veterinary Institute

LICENSE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2020 - 2024 Norwegian Veterinary Institute
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
3. Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

NAMESPACE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ export(get_tested_herds)
1010
export(make_random)
1111
export(style_sum_line)
1212
export(write_ok_selection_list)
13-
importFrom(magrittr,"%>%")
1413
importFrom(rlang,.data)

NEWS

Lines changed: 0 additions & 165 deletions
This file was deleted.

0 commit comments

Comments
 (0)