view elastic_tool.Rmd @ 7:23cbb0daf18d draft default tip

planemo upload commit d1d9c6fc42729b4194adac13d1b71062bf19ad0b-dirty
author mingchen0919
date Mon, 02 Apr 2018 10:53:05 -0400
parents 16e0f4b7a286
children
line wrap: on
line source

---
title: 'Dynamic tool'
output: html_document
---

<style>
pre code, pre, code {
  white-space: pre !important;
  overflow-x: scroll !important;
  word-break: keep-all !important;
  word-wrap: initial !important;
}
</style>

```{r setup, include=FALSE, warning=FALSE, message=FALSE}
knitr::opts_chunk$set(error = TRUE)
```

## User input

```{r, echo=FALSE, eval=TRUE}
##-------- build script files -----------

# build script file: script.sh
df = read.table(paste0(Sys.getenv('REPORT_FILES_PATH'), '/options_and_arguments.txt'), 
                sep = '|', header = TRUE)


knitr::kable(df)
```

```{r}
write('', file = paste0(Sys.getenv('REPORT_FILES_PATH'), '/script.sh'))
if (nrow(df) > 0) {
  for (i in 1:nrow(df)) {
    tool_output_dir = readLines(df[i, 'tool_output_dir'])[1]
    full_path = paste0(tool_output_dir, '/', df[i, 'relative_path'])
    command_line = paste0('cp -r ', full_path, ' ', df[i, collection_type])
    write(command_line, append = TRUE, 
          file = paste0(Sys.getenv('REPORT_FILES_PATH'), '/script.sh'))
  }
}
```