Skip to content

Commit 82538fb

Browse files
Merge pull request #26 from phuse-org/white-paper-draft
White paper draft
2 parents 17c0d6a + b96fa9f commit 82538fb

20 files changed

+152
-35
lines changed

.github/workflows/publish-quarto.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,18 @@ jobs:
3030
# uncomment below and fill to pin a version
3131
# version: SPECIFIC-QUARTO-VERSION-HERE
3232

33-
- name: Render Quarto Project
33+
- name: Render Quarto Project 1
3434
uses: quarto-dev/quarto-actions/render@v2
3535
with:
3636
to: html # If set, it will be equivalent to `quarto render --to html`
3737
path: site
3838

39+
- name: Render Quarto Project 2
40+
uses: quarto-dev/quarto-actions/render@v2
41+
with:
42+
to: html # If set, it will be equivalent to `quarto render --to html`
43+
path: white-paper
44+
3945
- name: Upload static files as artifact
4046
id: deployment
4147
uses: actions/upload-pages-artifact@v3

site/_quarto.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ website:
66
title: "Git in Statistical Programming"
77
navbar:
88
right:
9-
- about.qmd
9+
- href: index.qmd
10+
text: Home
11+
- posts.qmd
12+
- href: white-paper/index.html
13+
text: White Paper
1014
- icon: github
11-
href: https://github.com/
15+
href: https://github.com/phuse-org/git-in-statistical-programming
16+
1217

1318
format:
1419
html:

site/about.qmd

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

site/index.qmd

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
11
---
22
title: "Git in Statistical Programming"
3-
listing:
4-
contents: posts
5-
sort: "date desc"
6-
type: default
7-
categories: true
8-
sort-ui: false
9-
filter-ui: false
10-
page-layout: full
11-
title-block-banner: true
3+
about:
4+
image: phuselogo.png
5+
template: solana
6+
links:
7+
- icon: github
8+
text: Github
9+
href: https://github.com/phuse-org/git-in-statistical-programming
10+
1211
---
1312

13+
This blog contains posts from the PHUSE working group on The use of Git in Statistical Programming
1414

15+
# Meetings
16+
17+
Meetings are happening bi-weekly every Friday
18+
19+
# Goal
20+
21+
- White paper about Git in pharma for statisticians : Guidelines
22+
- Poster for Europe PHUSE 2025
23+
24+
# Content
25+
26+
- [White Paper draft](white-paper/index.html)
27+
- [Blog posts](posts.qmd)

site/posts.qmd

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Git in Statistical Programming blog"
3+
listing:
4+
- id: posts
5+
contents: "posts"
6+
type: default
7+
fields: [image, date, title, subtitle, categories, author, reading-time]
8+
sort: "date desc"
9+
# categories: cloud
10+
sort-ui: true
11+
filter-ui: true
12+
page-size: 10
13+
page-layout: full
14+
title-block-banner: false
15+
---
16+
17+
18+
::: {#posts}
19+
:::

white-paper/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.quarto/

white-paper/Challenges.qmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Change Management and Git
2+
3+
This chapter will discuss challenges in adoption of Git as well as how these might be addressed.
4+
5+

white-paper/_quarto.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
project:
2+
type: book
3+
output-dir: ../docs/white-paper
4+
book:
5+
title: "Git in Statistical Programming"
6+
author: "Kieran Martin"
7+
date: "5/22/2025"
8+
chapters:
9+
- index.qmd
10+
- state.qmd
11+
- Challenges.qmd
12+
- audittrail.qmd
13+
- qcintegration.qmd
14+
- recommendations.qmd
15+
- summary.qmd
16+
- references.qmd
17+
appendices:
18+
- tools.qmd
19+
20+
bibliography: references.bib
21+
22+
format:
23+
html:
24+
theme: cosmo
25+
26+
27+

white-paper/audittrail.qmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Audit trail requirements and Git
2+
3+
This chapter will discuss audit trail requirements for QC, and how they might be met in Git.
4+
5+

white-paper/cover.png

50 KB
Loading

0 commit comments

Comments
 (0)