Skip to content

Commit 1d35238

Browse files
authored
Merge pull request #144 from bcbio/devel
use repositories now
2 parents 4c04772 + 89dd364 commit 1d35238

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: bcbioR
22
Type: Package
33
Title: Templates and functions to guide downstream analysis and data interpretation
4-
Version: 0.4.4
4+
Version: 0.4.5
55
Authors@R: person("Pantano", "Lorena", , "lorena.pantano@gmail.com",
66
role = c("aut", "cre"))
77
Description: Collaborative code repository at the Harvard Chan Bioinformatics Core.

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# bcbioR 0.4.5
2+
3+
Migrate templates to bcbio individual repositories
4+
Add mm39 rRNA and tRNA annotation
5+
16
# bcbioR 0.4.4
27

38
init QC single cell adding init file for params for single QC #123

R/helpers.R

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,17 +83,17 @@ bcbio_templates <- function(type="rnaseq", outpath=NULL, org=NULL){
8383
#file.copy(fpath, outpath, recursive = T)
8484
copy_templates(outpath, "spatial", org)
8585
},
86-
chipseq={
86+
peakseq={
8787
#file.copy(fpath, outpath, recursive = T)
88-
copy_templates(outpath, "chipseq", org)
88+
copy_templates(outpath, "peakseq", org)
8989
},
9090
multiomics={
9191
#file.copy(fpath, outpath, recursive = T)
9292
copy_templates(outpath, "multiomics", org)
9393
},
9494
{
9595
stop(paste('project type not recognize, please choose: ',
96-
'rnaseq', 'chipseq',
96+
'rnaseq', 'peakseq',
9797
'singlecell','singlecell_delux','spatial'))
9898
}
9999
)
@@ -220,10 +220,14 @@ copy_templates <- function(path, pipeline, org=NULL){
220220
}else if(pipeline=="multiomics"){
221221
parts = c("templates/multiomics")
222222
}else if(pipeline=="spatial"){
223-
parts = c("templates/spatial")
223+
# parts = c("templates/spatial")
224+
repos = "https://github.com/bcbio/spatial-reports/archive/refs/heads/main.zip"
225+
names(repos)="spatial-reports"
224226
# apps=c(apps, SpatialViz="https://github.com/hbc/RShiny_app-SpatialViz/archive/refs/tags/Latest.zip")
225-
}else if(pipeline=="chipseq"){
226-
parts = c("templates/chipseq")
227+
}else if(pipeline=="peakseq"){
228+
# parts = c("templates/chipseq") #https://github.com/bcbio/peakseq-reports
229+
repos = "https://github.com/bcbio/peakseq-reports/archive/refs/heads/main.zip"
230+
names(repos)="peakseq-reports"
227231
}
228232

229233
#check if it is url or folder
21.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)