Skip to content

Commit

Permalink
add common files of a project
Browse files Browse the repository at this point in the history
  • Loading branch information
lpantano committed Apr 19, 2024
1 parent b22a6a7 commit 984b2b6
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 0 deletions.
13 changes: 13 additions & 0 deletions inst/rmarkdown/templates/common/skeleton/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# TODO

[ ] Replace Title in this file matching title projects
[ ] run function`bcbio_set_project()` to set up information for this project
- hbcxxxx code
- technology
- tissue
- organism
- pi
- project name
[ ] run function `bcbio_set_git()` to set up git repository
[ ] run function `bcbio_copy_dropbox()` to copy files to dropbox location

Empty file.
Empty file.
6 changes: 6 additions & 0 deletions inst/rmarkdown/templates/common/skeleton/information.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# info params
project = "name_hbcXXXXX"
PI = 'person name'
experiment = 'short description'
aim = 'short description'
analyst = 'person in the core'
Empty file.
25 changes: 25 additions & 0 deletions inst/rmarkdown/templates/common/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: "General Project Information"
author: "Harvard Chan Bioinformatics Core"
date: "`r Sys.Date()`"
output:
html_document:
code_folding: hide
df_print: paged
highlights: pygments
number_sections: true
self_contained: true
theme: default
toc: true
toc_float:
collapsed: true
smooth_scroll: true
editor_options:
chunk_output_type: console
params:
params_file: information.R
---

```{r echo = F}
source(params$params_file)
```
3 changes: 3 additions & 0 deletions inst/rmarkdown/templates/common/template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name: bcbio base
description: Standard NGS down-stream analyses
create_dir: true

0 comments on commit 984b2b6

Please sign in to comment.