Skip to content

Commit

Permalink
renames a couple of files to try and avoid
Browse files Browse the repository at this point in the history
long file path warnings
  • Loading branch information
rmflight committed May 2, 2024
1 parent 55fe085 commit 41e24bc
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ test_combine_filter.rda
^annotations\.json$
^test_cytoscape\.rda$
^cc2_results_grouped\.txt$
^doc$
^Meta$
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
.RData
executable_related/
inst/doc
/doc/
/Meta/
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: categoryCompare2
Version: 0.100.19
Version: 0.100.20
Title: Meta-Analysis of High-Throughput Experiments Using Feature
Annotations
Author: Robert M. Flight <rflight79@gmail.com>
Expand Down
15 changes: 7 additions & 8 deletions vignettes/command_line_interface.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ vignette: >
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
if (grepl("mingw", R.version$os)) {
run_chunks = FALSE
} else {
run_chunks = TRUE
}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
eval = run_chunks
)
```

```{r setup}
Expand All @@ -42,7 +44,6 @@ remotes::install("moseleybioinformaticslab/categorycompare2")

```{r}
#| label: add-to-path
#| eval: run_chunks
cli_location = system.file("exec", package = "categoryCompare2")
cli_location
dir(cli_location)
Expand All @@ -64,7 +65,6 @@ Assuming that we've saved the path in a shell variable, `CLI_LOCATION`, we can a

```{sh}
#| label: add-path-check
#| eval: run_chunks
export PATH="$PATH:$CLI_LOCATION"
chmod 0750 $CLI_LOCATION/*.R
```
Expand Down Expand Up @@ -102,7 +102,6 @@ Sys.setenv(TESTLOC = test_loc)

```{bash}
#| label: run-everything
#| eval: run_chunks
export CURR_DIR=$(pwd)
export WORKING=$CURR_DIR/cc2_1234
mkdir -p $WORKING
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: "categoryCompare2: Alternative Visualization"
title: "categoryCompare2: visNetwork"
output: html_document
editor_options:
chunk_output_type: console
---
<!--
% \VignetteEngine{knitr}
% \VignetteIndexEntry{categoryCompare2: Alternative Visualization}
% \VignetteIndexEntry{categoryCompare2: visNetwork}
% \VignetteDepends{categoryCompare2, GO.db, affy, hgu95av2.db, genefilter, estrogen, limma, DiagrammeR, visNetwork, Cairo}
% \VignetteKeyword{categoryCompare, meta-analysis, gene ontology, kegg}
% \VignettePackage{categoryCompare2}
Expand Down

0 comments on commit 41e24bc

Please sign in to comment.