Changes between Version 24 and Version 25 of FAQ


Ignore:
Timestamp:
04/18/24 14:58:01 (12 months ago)
Author:
xinlei.gao
Comment:

Add a Q&A for loading earlier version of Seurat

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v24 v25  
    39391. How can I run '''[#alphafold AlphaFold 2.0-2.3]''' here at Whitehead?  [[br]] [[br]]
    40401. How can I output '''[#pvalues small p-values]''' from R?  [[br]] [[br]]
     411. How can I load the '''[#Seurat earlier version of Seurat]''' in R?  [[br]] [[br]]
    4142----
    4243Answers to Frequently Asked Questions
     
    235236}}}
    236237  * Other statistical tests may save the p-value with a different name.  Try names(OBJECT) to see your choices and figure out how to access the exact value.
     2381. [=#Seurat How can I load the '''earlier version of Seurat''' in R?]
     239  * As of April 18, 2024, the default version of Seurat available on fry/RStudio is v5.0.1.
     240  * To use Seurat version 5, enter the following command in R:
     241{{{
     242library(Seurat)
     243}}}
     244  * In some instances, certain software may only be compatible with older versions of Seurat, or you might need to run analyses on Seurat objects created with earlier versions. In these cases, you can load an earlier version of Seurat by specifying the library location.
     245  * For example, to load Seurat version 4, use this command:
     246{{{
     247require(Seurat, lib.loc="/nfs/apps/lib/R/4.2-focal/site-library.2023q1/")
     248}}}
     249  * This command directs R to use a specific library path where Seurat version 4 is installed, ensuring compatibility with older datasets or software requirements.
     250