-
Notifications
You must be signed in to change notification settings - Fork 33
/
project-management.qmd
237 lines (184 loc) · 10.8 KB
/
project-management.qmd
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# Project management {#sec-manage}
## Setting up for success
A clinical data analysis project is not unlike typical data analysis projects or software projects.
Therefore, the conventional wisdom and tricks for managing a successful project are also applicable here.
At the same time, clinical projects also have unique traits,
such as high standards for planning, development, validation, and delivery
under strict time constraints.
Although many factors determine if a project can execute efficiently,
we believe a few aspects are critical for long-term success,
especially when managing clinical data analysis projects at scale.
### Work as a team
As a general principle, all the team members involved in a project
should take basic training on project management and understand how to work as
a development team.
@teamgeek provides some valuable tips on this topic.
As always, setting a clear goal and following a system development lifecycle
(SDLC) is essential.
### Design clean code architecture
Having a clean architecture design for your code improves the project's
robustness and flexibility for future changes.
For example, we should understand how to separate business logic from other layers;
know what should be created as reusable components and what should be
written as one-off analysis scripts; write low coupling, high cohesion code,
and so on.
@cleanarch offers some helpful insights on this topic.
### Set capability boundaries
Knowing what you can do is essential.
Create a core capabilities list for your team.
Sometimes, it is also critical to understand **what not to do**.
For example, the hidden cost of integrating with external systems
or involving other programming languages can be prohibitively high.
Remember, a simple, robust solution is almost always preferable to
a complex solution that requires high maintenance and constant attention.
### Contribute to the community
Every individual is limited in some way.
The collective thinking from a community could benefit a project in the long term.
When designing reusable components, make a plan to share with
internal communities, or even better, with the open-source community.
## The SDLC
For A&R deliverables in clinical project development,
a clearly defined process or system development lifecycle (SDLC)
is crucial to ensure regulatory compliance.
SDLC for the A&R deliverables can be defined in four stages.
- Planning: a planning stage to define the scope of a project.
- Development: a development stage to implement target deliverables.
- Validation: a validation stage to verify target deliverables.
- Operation: an operation stage to deliver work to stakeholders.
Importantly, we should not consider SDLC as a linear process.
For example, if the study team identifies a new requirement in a development or validation stage,
the team should return to the planning stage to discuss and align the scope.
An [agile project management](https://www.atlassian.com/agile/project-management) approach is suitable
and recommended for an A&R clinical development project.
The goal is to embrace an iterative approach that continuously improves target deliverables based on
frequent stakeholder feedback.
There are many good tools to implement agile project management strategy, for example:
- [GitHub project board](https://docs.github.com/en/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)
- [Jira](https://www.atlassian.com/software/jira)
## Planning
The planning stage is important in the SDLC lifecycle
as the requirements for all A&R deliverables are gathered and documented.
In the planning stage, a project leader should identify all the deliverables,
e.g., a list of tables, listings, and figures (TLFs).
For each TLFs, the team should prepare the necessary specifications:
- mock-up tables
- validation level (e.g., independent review or double programming)
- etc.
The project leader should also align work assignments with team members.
The purpose is to answer the question of "who is doing what?"
```{r, echo=FALSE}
library("kableExtra")
df <- read.table("validation-tracker.tsv", stringsAsFactors = FALSE, header = FALSE, sep = "\t")
df %>%
kbl(col.names = NULL) %>%
kable_classic(full_width = FALSE, html_font = "'Times New Roman', Times, serif", font_size = 16) %>%
add_header_above(
c(
"Program Name" = 1, "Program Validation Category" = 1,
"Who" = 1, "Status" = 1, "Who" = 1, "Status" = 1, "Who" = 1, "Status" = 1
),
line = FALSE,
extra_css = "border: 1px solid #000;"
) %>%
add_header_above(
c(
"<span></span>" = 2, "Requirement/Specification" = 2,
"Developer Testing" = 2, "Independent Testing" = 2
),
escape = FALSE,
line = FALSE,
extra_css = "border: 1px solid #000;"
) %>%
column_spec(4, background = ifelse(df$V4 == "C", "#00ff00", "#ffff00")) %>%
column_spec(6, background = ifelse(df$V6 == "C", "#00ff00", "#ffff00")) %>%
column_spec(8, background = ifelse(df$V8 == "C", "#00ff00", "#ffff00")) %>%
column_spec(1, extra_css = "border: 1px solid #000; text-align: left;") %>%
column_spec(2:8, extra_css = "border: 1px solid #000; text-align: center;")
```
<p></p>
The project lead should also set up a project folder, as discussed in @sec-folder.
The project initiation can be simplified by creating an
[RStudio project template](https://rstudio.github.io/rstudio-extensions/rstudio_project_templates.html).
To enable reproducibility, the project leader should also review the startup file
(i.e. `.Rprofile` discussed in @sec-reproduce) and define:
- R version
- Repository of R packages with a snapshot date
- Project package library path
- etc.
::: {.callout-caution}
After project initiation, modifying `.Rprofile` will be a risk for
reproducibility and should be handled carefully if necessary.
:::
## Development
After a project is initiated, the study team starts to develop TLFs based on
pre-defined mock-up tables assigned to each team member.
The analysis code and relevant description can be saved in R Markdown files
in the `vignettes/` folder.
The use of R Markdown allows developers to assemble narrative text, code, and its
comments in one place to simplify documentation.
It would be helpful to create a template and define a name convention for all TLFs deliverables.
For example, we can use the `tlf_` prefix in the filename to indicate that the R Markdown file is for delivering TLFs.
Multiple TLFs with similar designs can be included in one R Markdown file.
For example, in the `esubdemo` project, we have six R Markdown files to create TLFs.
If there are any project-specific R functions that need to be developed,
the R functions can be placed in the `R/` folder as discussed in
@sec-consistency.
## Validation
Validation is a crucial stage to ensure the deliverables are accurate and consistent.
After the development stage is completed, the project team needs to validate the deliverables, including R Markdown
files for TLFs deliverables and project-specific R functions.
The level of validation is determined at the define stage.
In an R package development, the validation or testing is completed under the `test/` folder.
The testthat R package can be used to streamline the validation process.
More details of the testthat package for R package validation can be found in [Chapter 12 of the R package book](https://r-pkgs.org/testing-basics.html).
It is recommended to have a name convention to indicate the type of validation.
For example, we can use `test-developer-test`, `test-independent-test`, `test-double-programming`
to classify the validation type.
It is recommended to follow the same organization
for files in testthat folder as `R/` folder and `vignettes/` folder.
Every single file in the `R/` folder and `vignettes/` folder should have a testing file saved in
the `tests/testthat/` folder to validate the content.
For example, in `esubdemo` project, we can have a list of testing files below.
```
tests/testthat
├── test-independent-test-tlf-01-disposition.R
├── test-independent-test-tlf-02-population.R
├── test-independent-test-tlf-03-baseline.R
├── test-independent-test-tlf-04-efficacy.R
├── test-independent-test-tlf-05-ae-summary.R
├── test-independent-test-tlf-06-ae-spec.R
└── test-independent-test-fmt.R
```
To validate the content of a table, we can save the last datasets ready for table generation as a `.Rdata` file.
A validator can reproduce the TLF and compare it with the original result saved in the `.Rdata` file.
A test is passed when the results match.
Customers can directly review the formatting of the TLFs by comparing them with the mock-up.
To validate a figure, we can use the [snapshot testing](https://testthat.r-lib.org/articles/snapshotting.html) strategy.
After the validator completes the testing of project-specific functions and R Markdown files,
the process to execute and report testing results is the same for a standard R package.
The `devtools::test()` function automatically executes all testing cases and summarizes the testing results in a report.
After completing the validation, the validator updates the status in a validation tracker.
The project lead reviews the tracking sheet to make sure all required activities in the SDLC are completed,
and the tracking sheet has been filled correctly.
The deliverables are ready for customer review after all the validation steps are completed.
Any changes to the output requested by customers are documented.
## Operation
After completion of development and required validation of all A&R deliverables,
the project lead runs compliance checks for a project-specific R package similar to other R packages.
`devtools::check()` is a convenient way to run compliance checks or `R CMD check`.
`R CMD check` is an automated check of the contents in the R package
for frequently encountered issues before submission to CRAN.
Since the project-specific R package is not submitted to CRAN, some checks can be customized and skipped in `devtools::check()`.
The project lead should work with the study team to ensure
all reported errors, warnings, and notes by `devtools::check()` are fixed.
The project lead can also use the R package pkgdown to build a complete website for a project-specific R package.
The pkgdown website is a convenient way to run all analyses in batch and
integrate outputs in a website, which comprehensively covers
project-specific R functions, TLF generation programs, outputs and validation tracking information, etc.
For example, in the `esubdemo` project, we created the pkgdown website at <https://elong0527.github.io/esubdemo/>.
Many of the tasks in SDLC can be completed automatically.
An organization can leverage CI/CD workflow to automatically enable those tasks,
such as running testing cases and creating a pkgdown website.
For example, in the `esubdemo` project, we set up
[GitHub Actions](https://github.com/elong0527/esubdemo/actions)
for it. This can be done by using `usethis::use_github_action()`.