Skip to content

Latest commit

 

History

History
92 lines (67 loc) · 2.82 KB

File metadata and controls

92 lines (67 loc) · 2.82 KB

title: Installation

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

MSPC can be used as command-line application, a C# library (distributed via nuget), or an R package (distributed via Bioconductor). This page documents installing MSPC as a command-line application, for installing it as a C# library, please refer to this page, or Bioconductor user guide for installing/using it in R programming language.

A prerequisite for MSPC installation is .NET 9.0 or newer. We provide two methods for MSPC installation depending on whether .NET 9.0 is installed on your machine or you can install it, or .NET 9.0 is not installed and you cannot install it, respectively Method A or Method B.

Method A: Framework Dependent

First we check if .NET 9.0 is installed (not to be confused with .NET Framework), and install it if it is not, then we install MSPC.

Install .NET 9.0

Open a command line shell (e.g., PowerShell) and run the following command:

$ dotnet --info
.NET SDK:
 Version:           9.0.102
 Commit:            cb83cd4923
 Workload version:  9.0.100-manifests.4a54b1a6
 MSBuild version:   17.12.18+ed8c6aec5

If the output is not as shown above, you would need to install .NET 9.0 (or newer) following these instructions.

Install MSPC

You may install MSPC using either of the following methods:

  • Goto this page and download mspc.zip and extract it to a path on your computer;

  • Type the following command in your command line shell:

     $ wget -O mspc.zip "https://github.com/Genometric/MSPC/releases/latest/download/mspc.zip"
     $ unzip mspc.zip -d mspc

Method B: Self-Contained

Install MSPC using either of the following commands depending on your runtime:

<Tabs defaultValue="win" values={[ {label: 'Windows x64', value: 'win'}, {label: 'Linux x64', value: 'linux'}, {label: 'macOS x64', value: 'mac'}, ]}>

$ wget -O mspc.zip "https://github.com/Genometric/MSPC/releases/latest/download/win-x64.zip"
$ unzip mspc.zip -d mspc
$ wget -O mspc.zip "https://github.com/Genometric/MSPC/releases/latest/download/linux-x64.zip"
$ unzip mspc.zip -d mspc
$ cd mspc
$ chmod 777 mspc
$ wget -O mspc.zip "https://github.com/Genometric/MSPC/releases/latest/download/osx-x64.zip"
$ unzip mspc.zip -d mspc
$ cd mspc
$ chmod 777 mspc