Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove stray newline between bullet 2 and bullet 3 in the Latest News section of the README #157

Merged
merged 5 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The website is divide into 4 sections that will walk you through our efforts:
* [Novo Nordisk's Journey to an R based FDA Submission](https://www.youtube.com/watch?v=t33dS17QHuA)
- *Data scientists at Novo Nordisk, a leading pharmaceutical company in diabetes, obesity, and other chronic diseases, share details of their first FDA submission package featuring outputs and* [ADaM datasets](https://www.cdisc.org/standards/foundational/adam) *written exclusively in R.*

\n

* [Testing Containers and WebAssembly in Submissions to the FDA](https://pharmaverse.github.io/blog/posts/2024-02-01_containers_webassembly_submission/containers_and_webassembly_submissions.html)

- *Blog post with short summary of the R Consortium FDA Pilots 1-4 Series and the ongoing efforts undertaken to evaluate new technologies for submissions to the Food and Drug Administration (FDA). These transformative approaches, including WebAssembly and containers, hold immense potential to transform the regulatory landscape and streamline the submission process.*
Expand Down
16 changes: 8 additions & 8 deletions submission/pkgs4adrg.r
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ library(data.table)
pkgloaded <- sessionInfo()$loadedOnly #get intial list of packages that were loaded
pkgother <- sessionInfo()$otherPkgs #get initla list of packages that were also listed in the Session but may not have been used

loaded <- data.frame(rbindlist(pkgloaded, idcol = TRUE, fill=T)) %>%
select(Package, Title, Version, Description) %>%
mutate(loaded='Y')
other <- data.frame(rbindlist(pkgother, idcol = TRUE, fill=T)) %>%
select(Package, Title, Version, Description) %>%
mutate(loaded='N')
loaded <- data.frame(rbindlist(pkgloaded, idcol = TRUE, fill = TRUE)) %>%
select(Package, Title, Version, Description) %>%
mutate(loaded = "Y")
other <- data.frame(rbindlist(pkgother, idcol = TRUE, fill = TRUE)) %>%
select(Package, Title, Version, Description) %>%
mutate(loaded = "N")

pkgdesc <- bind_rows(loaded, other) # stacks all package data frames.
# NOTE column 'loaded', from this data frame can be used to subset out packages not used and may not be needed for the adrg.pdf

# update path to save CSV in your local area.
write.csv(pkgdesc, "/cloud/project/submission/pkgs4adrg.csv", row.names=FALSE)
# update path to save CSV in your local area.
write.csv(pkgdesc, "/cloud/project/submission/pkgs4adrg.csv", row.names = FALSE)
Loading