Skip to content

Commit

Permalink
fixes for github actions
Browse files Browse the repository at this point in the history
- remove metfrag_source (old version, not functioning)
- add options to skip cmd check and bioccheck in actions
- update some documentation
  • Loading branch information
grlloyd committed Mar 21, 2024
1 parent 34cb625 commit a590cf8
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 112 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/check-bioc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ jobs:
shell: Rscript {0}

- name: Run CMD check
if: env.cmd_check == 'true'
env:
_R_CHECK_CRAN_INCOMING_: false
DISPLAY: 99.0
Expand All @@ -241,6 +242,7 @@ jobs:
shell: Rscript {0}

- name: Run BiocCheck
if: env.has_bioc_check == 'true'
env:
DISPLAY: 99.0
run: |
Expand Down
5 changes: 2 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ Collate:
'BiocFileCache_database_class.R'
'CompoundDb_source_class.R'
'MTox700plus_database_class.R'
'annotation_table_class.R'
'lcms_table_class.R'
'MetFrag_source_class.R'
'MetMashR-package.R'
'PathBank_metabolite_database_class.R'
'add_columns_class.R'
Expand All @@ -64,9 +61,11 @@ Collate:
'annotation_histogram_class.R'
'annotation_histogram2d_class.R'
'annotation_pie_chart.R'
'annotation_table_class.R'
'annotation_venn_chart.R'
'calc_ppm_diff_class.R'
'calc_rt_diff_class.R'
'lcms_table_class.R'
'cd_source_class.R'
'rest_api_parsers.R'
'rest_api_class.R'
Expand Down
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export(BiocFileCache_database)
export(CompoundDb_source)
export(GO_database)
export(MTox700plus_database)
export(MetFrag_source)
export(PathBank_metabolite_database)
export(add_columns)
export(add_labels)
Expand Down
2 changes: 1 addition & 1 deletion R/MTox700plus_database_class.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ MTox700plus_database <- function(version = "latest",
"The version number of the MTox700+ database to import. ",
"Available versions are listed here: ",
"[https://github.com/michabohealthscience/MTox700plus/releases].",
' `version` should match the tag of thr release e.g. `"v1.0"`.',
' `version` should match the tag of the release e.g. `"v1.0"`.',
' For convenience `version = "latest"` will always retrieve ',
"the most recent release. To prevent unecessary downloads ",
"`BiocFileCache` is used to store a local copy."
Expand Down
56 changes: 0 additions & 56 deletions R/MetFrag_source_class.R

This file was deleted.

2 changes: 1 addition & 1 deletion R/cd_source_class.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#' @eval get_description('cd_source')
#' @include annotation_source_class.R
#' @include annotation_source_class.R lcms_table_class.R
#' @family {annotation sources}
#' @family {annotation tables}
#' @rawNamespace import(dplyr, except = as_data_frame)
Expand Down
2 changes: 1 addition & 1 deletion man/MTox700plus_database.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 0 additions & 46 deletions man/MetFrag_source.Rd

This file was deleted.

1 change: 0 additions & 1 deletion man/annotation_table.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion man/cd_source.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion man/ls_source.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a590cf8

Please sign in to comment.