Skip to content

Commit 08e54e0

Browse files
authored
Merge pull request #310 from vimc/vimc-5925
2 parents 33a6e80 + b1e129e commit 08e54e0

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: orderly
22
Title: Lightweight Reproducible Reporting
3-
Version: 1.4.5
3+
Version: 1.4.6
44
Description: Order, create and store reports from R. By defining a
55
lightweight interface around the inputs and outputs of an
66
analysis, a lot of the repetitive work for reproducible research
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is a report
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
parameters:
2+
nmin:
3+
default: 0.5
4+
disease:
5+
default: HepB
6+
script: script.R
7+
artefacts:
8+
- staticgraph:
9+
description: A summary graaph
10+
filenames: graph.png
11+
displayname: default param report
12+
13+
author: Dr Serious
14+
requester: ACME
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
png("graph.png")
2+
par(mar = c(4, 4, 4, .5))
3+
barplot(nmin, main = disease)
4+
dev.off()

0 commit comments

Comments
 (0)