Skip to content

Commit

Permalink
fix checking version text and finish sc integration
Browse files Browse the repository at this point in the history
  • Loading branch information
lpantano committed Oct 11, 2024
1 parent 1dad379 commit c1aa8fc
Show file tree
Hide file tree
Showing 11 changed files with 149 additions and 77 deletions.
2 changes: 1 addition & 1 deletion inst/templates/base/reports/example.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ setwd(fs::path_dir(getSourceEditorContext()$path))
#. other versions
stopifnot(R.version$major>= 4) # requires R4
stopifnot(compareVersion(R.version$minor,"3.3")==0) # requires >=4.3.3
stopifnot(compareVersion(BiocManager::version(), "3.18")>=0)
stopifnot(compareVersion(as.character(BiocManager::version()), "3.18")>=0)
```

This code is in this ![](https://img.shields.io/badge/status-stable-green) revision.
Expand Down
2 changes: 1 addition & 1 deletion inst/templates/chipseq/QC/QC.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ setwd(fs::path_dir(getSourceEditorContext()$path))
#. other versions
stopifnot(R.version$major>= 4) # requires R4
stopifnot(compareVersion(R.version$minor,"3.3")==0) # requires >=4.3.3
stopifnot(compareVersion(BiocManager::version(), "3.18")>=0)
stopifnot(compareVersion(as.character(BiocManager::version()), "3.18")>=0)
```

This code is in this ![](https://img.shields.io/badge/status-alpha-yellow) revision.
Expand Down
2 changes: 1 addition & 1 deletion inst/templates/chipseq/diffbind/diffbind.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ setwd(fs::path_dir(getSourceEditorContext()$path))
#. other versions
stopifnot(R.version$major>= 4) # requires R4
stopifnot(compareVersion(R.version$minor,"3.3")==0) # requires >=4.3.3
stopifnot(compareVersion(BiocManager::version(), "3.18")>=0)
stopifnot(compareVersion(as.character(BiocManager::version()), "3.18")>=0)
```

This code is in this ![](https://img.shields.io/badge/status-alpha-yellow) revision.
Expand Down
3 changes: 1 addition & 2 deletions inst/templates/rnaseq/DE/Cross-comparison-analysis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ setwd(fs::path_dir(getSourceEditorContext()$path))
#. other versions
stopifnot(R.version$major>= 4) # requires R4
stopifnot(compareVersion(R.version$minor,"3.3")==0) # requires >=4.3.3
stopifnot(compareVersion(BiocManager::version(), "3.18")>=0)
stopifnot(compareVersion(package.version("Seurat"), "5.0.0")>=0)
stopifnot(compareVersion(as.character(BiocManager::version()), "3.18")>=0)
```

This code is in this ![](https://img.shields.io/badge/status-alpha-yellow) revision.
Expand Down
2 changes: 1 addition & 1 deletion inst/templates/rnaseq/DE/DEG.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ setwd(fs::path_dir(getSourceEditorContext()$path))
#. other versions
stopifnot(R.version$major>= 4) # requires R4
stopifnot(compareVersion(R.version$minor,"3.3")==0) # requires >=4.3.3
stopifnot(compareVersion(BiocManager::version(), "3.18")>=0)
stopifnot(compareVersion(as.character(BiocManager::version()), "3.18")>=0)
```

This code is in this ![](https://img.shields.io/badge/status-stable-green) revision.
Expand Down
3 changes: 1 addition & 2 deletions inst/templates/rnaseq/DE/GSVA.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ setwd(fs::path_dir(getSourceEditorContext()$path))
#. other versions
stopifnot(R.version$major>= 4) # requires R4
stopifnot(compareVersion(R.version$minor,"3.3")==0) # requires >=4.3.3
stopifnot(compareVersion(BiocManager::version(), "3.18")>=0)
stopifnot(compareVersion(package.version("Seurat"), "5.0.0")>=0)
stopifnot(compareVersion(as.character(BiocManager::version()), "3.18")>=0)
```

This code is in this ![](https://img.shields.io/badge/status-alpha-yellow) revision.
Expand Down
3 changes: 1 addition & 2 deletions inst/templates/rnaseq/DE/Intersections.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ setwd(fs::path_dir(getSourceEditorContext()$path))
#. other versions
stopifnot(R.version$major>= 4) # requires R4
stopifnot(compareVersion(R.version$minor,"3.3")==0) # requires >=4.3.3
stopifnot(compareVersion(BiocManager::version(), "3.18")>=0)
stopifnot(compareVersion(package.version("Seurat"), "5.0.0")>=0)
stopifnot(compareVersion(as.character(BiocManager::version()), "3.18")>=0)
```

This code is in this ![](https://img.shields.io/badge/status-alpha-yellow) revision.
Expand Down
2 changes: 1 addition & 1 deletion inst/templates/rnaseq/QC/QC_nf-core.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ setwd(fs::path_dir(getSourceEditorContext()$path))
#. other versions
stopifnot(R.version$major>= 4) # requires R4
stopifnot(compareVersion(R.version$minor,"3.3")==0) # requires >=4.3.3
stopifnot(compareVersion(BiocManager::version(), "3.18")>=0)
stopifnot(compareVersion(as.character(BiocManager::version()), "3.18")>=0)
```

This code is in this ![](https://img.shields.io/badge/status-stable-green) revision.
Expand Down
Loading

0 comments on commit c1aa8fc

Please sign in to comment.