-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00_packageVersions.Rmd
66 lines (51 loc) · 1.43 KB
/
00_packageVersions.Rmd
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
---
title: "Bender et al (2024) -- EMBO"
subtitle: Package versions
author:
- name: Alexander Bender
affiliation: Institute of Molecular Tumor Biology, Muenster/Germany
date: "`r paste('Compiled:', format(Sys.time(), '%d-%b-%Y'))`"
output:
rmdformats::readthedown:
code_folding: show
keep_md: false
highlight: tango
toc_float:
collapsed: false
editor_options:
markdown:
wrap: 200
---
<style>
body {
text-align: justify}
</style>
# Setup
Define root directory that contains the folder with source data. Run script that
loads packages and define document-specific variables.
```{r setup}
# Inside this Docker container we mount the directory with all the source data as "/projectdir/"
rootdir <- "/projectdir/"
source(paste0(rootdir, "/runStartup.R"))
```
# Package versions
A summary of all R package versions installed in this container:
```{r pkgs}
pkg_ver <-
lapply(rownames(installed.packages()), function(x) {
data.frame(package = x, version = packageVersion(x))
}) %>%
do.call(rbind, .) %>%
dplyr::arrange(package) %>%
unique()
knitr::kable(pkg_ver)
sessionInfo()
```
# Command line tools
Versions of MAGeCK RRA, meme, homer, bedtools
```{bash}
echo "ame:" $(/software/meme/bin/ame --version)
echo "bedtools:" $(/software/bedtools2/bin/bedtools --version | awk '{gsub("bedtools ", "");print}')
echo "mageck:" "$(${MAGECKPATH}/mageck --version)"
echo "meme:" $(/software/meme/bin/meme -version)
```