Skip to content

Commit

Permalink
Updated changelog and docs; reverted R package installation
Browse files Browse the repository at this point in the history
  • Loading branch information
epehrsson committed Apr 15, 2024
1 parent 50ae79c commit 464bbed
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## CARLISLE development version
- Bug fixes (#127, @epehrsson)
- Removes single-sample group check for DESeq.
- Increases memory for DESeq.
- Ensures control replicate number is an integer.
- Fixes FDR cutoff misassigned to log2FC cutoff.
- Fixes `no_dedup` variable names in library normalization scripts.

## CARLISLE v2.5.0
- Refactors R packages to a common source location (#118, @slsevilla)
Expand Down
2 changes: 2 additions & 0 deletions docs/user-guide/preparing-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,5 @@ An example contrast file:
| condition1 | condition2 |
| --- | --- |
| MOC1_siSmyd3_2m_25_HCHO | MOC1_siNC_2m_25_HCHO |

**Note**: you must have more than one sample per condition in order to perform differential analysis with DESeq2
12 changes: 6 additions & 6 deletions workflow/scripts/_diff_markdown.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ source(params$carlisle_functions)
Rlib_dir=params$Rlib_dir
Rpkg_config=params$Rpkg_config
print(paste0("Using the lib.loc location: ",Rlib_dir))
#assign(".lib.loc", Rlib_dir, envir = environment(.libPaths))
assign(".lib.loc", Rlib_dir, envir = environment(.libPaths))
.libPaths()
# read in package info
Expand All @@ -51,11 +51,11 @@ pkg_df
CARLISLE_HANDLE_PACKAGES(pkg_df)
##handle ELBOW separately - it requires an older version of bioconductor / R
#if("ELBOW" %in% new.packages){
# install.packages(paste0(Rlib_dir,"ELBOW_1.10.0.tar.gz"),
# repos = NULL, type="source", INSTALL_opts = '--no-lock')
# new.packages=new.packages[names(new.packages) != "ELBOW"]
#}
if("ELBOW" %in% new.packages){
install.packages(paste0(Rlib_dir,"ELBOW_1.10.0.tar.gz"),
repos = NULL, type="source", INSTALL_opts = '--no-lock')
new.packages=new.packages[names(new.packages) != "ELBOW"]
}
```

## Loading SampleInfo and Counts
Expand Down

0 comments on commit 464bbed

Please sign in to comment.