too-many-cells-0.1.2.0: src/TooManyCells/Matrix/Utility.hs
{- TooManyCells.Matrix.Utility
Gregory W. Schwartz
Collects helper functions in the program.
-}
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE QuasiQuotes #-}
module TooManyCells.Matrix.Utility
( matToRMat
, scToRMat
, sparseToHMat
, hToSparseMat
, matToHMat
, matToSpMat
, spMatToMat
, loadMatrixMarket
, extractSc
, writeMatrixLike
, isCsvFile
, getMatrixOutputType
) where
-- Remote
import BirchBeer.Types
import Control.Monad.Managed (runManaged)
import Control.Monad.State (MonadState (..), State (..), evalState, execState, modify)
import Data.Bool (bool)
import Data.Char (toUpper)
import Data.Function (on)
import Data.List (maximumBy)
import Data.Maybe (fromMaybe)
import Data.Matrix.MatrixMarket (Matrix(RMatrix, IntMatrix), Structure (..), writeMatrix)
import Data.Scientific (toRealFloat, Scientific)
import Language.R as R
import Language.R.QQ (r)
import System.FilePath ((</>))
import TextShow (showt)
import qualified Control.Lens as L
import qualified Data.ByteString.Char8 as B
import qualified Data.ByteString.Streaming.Char8 as BS
import qualified Data.Clustering.Hierarchical as HC
import qualified Data.Graph.Inductive as G
import qualified Data.Map.Strict as Map
import qualified Data.Sequence as Seq
import qualified Data.Sparse.Common as S
import qualified Data.Text as T
import qualified Data.Text.Encoding as T
import qualified Data.Text.IO as T
import qualified Data.Text.Lazy as TL
import qualified Data.Text.Lazy.IO as TL
import qualified Data.Text.Lazy.Read as TL
import qualified Data.Vector as V
import qualified Numeric.LinearAlgebra as H
import qualified Streaming as Stream
import qualified Streaming.Cassava as Stream
import qualified Streaming.Prelude as Stream
import qualified Streaming.With.Lifted as SW
import qualified System.Directory as FP
-- Local
import TooManyCells.File.Types
import TooManyCells.MakeTree.Types
import TooManyCells.Matrix.Types
-- | Convert a mat to an RMatrix.
matToRMat :: MatObsRow -> R s (RMatObsRow s)
matToRMat (MatObsRow m) = do
[r| library(jsonlite) |]
let mString = show . H.toLists . sparseToHMat $ m
-- We want rows as observations and columns as features.
mat <- [r| as.matrix(fromJSON(mString_hs)) |]
return . RMatObsRow $ mat
-- | Convert a sc structure to an RMatrix.
scToRMat :: SingleCells -> R s (RMatObsRow s)
scToRMat sc = do
[r| library(Matrix) |]
let rowNamesR = fmap (T.unpack . unCell) . V.toList . _rowNames $ sc
colNamesR = fmap (T.unpack . unGene) . V.toList . _colNames $ sc
mat <- fmap unRMatObsRow . matToRMat . _matrix $ sc
-- namedMat <- [r| rownames(mat_hs) = rowNamesR_hs
-- colnames(mat_hs) = colNamesR_hs
-- |]
return . RMatObsRow $ mat
-- | Convert a sparse matrix to an hmatrix.
sparseToHMat :: S.SpMatrix Double -> H.Matrix H.R
sparseToHMat mat = H.assoc (S.dimSM mat) 0
. fmap (\(!x, !y, !z) -> ((x, y), z))
. S.toListSM
$ mat
-- | Convert a sparse matrix to an hmatrix.
hToSparseMat :: H.Matrix H.R -> S.SpMatrix Double
hToSparseMat =
S.transposeSM . S.sparsifySM . S.fromColsL . fmap S.vr . H.toLists
-- | Convert a Matrix to an hmatrix Matrix. Assumes matrix market is 1 indexed.
matToHMat :: Matrix Scientific -> H.Matrix H.R
matToHMat (RMatrix size _ _ xs) =
H.assoc size 0
. fmap (\(!x, !y, !z) -> ((fromIntegral x - 1, fromIntegral y - 1), toRealFloat z))
$ xs
matToHMat (IntMatrix size _ _ xs) =
H.assoc size 0
. fmap (\(!x, !y, !z) -> ((fromIntegral x - 1, fromIntegral y - 1), fromIntegral z))
$ xs
matToHMat _ = error "\nInput matrix is not a Real matrix."
-- | Convert a Matrix to a sparse matrix.
matToSpMat :: Matrix Scientific -> S.SpMatrix Double
matToSpMat (RMatrix size _ _ xs) =
S.fromListSM size
. fmap (\(!x, !y, !z) -> (fromIntegral x - 1, fromIntegral y - 1, toRealFloat z))
$ xs
matToSpMat (IntMatrix size _ _ xs) =
S.fromListSM size
. fmap (\(!x, !y, !z) -> (fromIntegral x - 1, fromIntegral y - 1, fromIntegral z))
$ xs
matToSpMat _ = error "\nInput matrix is not a Real matrix."
-- | Convert a sparse matrix to a Matrix.
spMatToMat :: S.SpMatrix Double -> Matrix Double
spMatToMat mat = RMatrix (S.dimSM mat) (S.nzSM mat) General
. fmap (\(!x, !y, !z) -> (x + 1, y + 1, z)) . S.toListSM
$ mat
-- | Load a matrix market format.
loadMatrixMarket :: MatrixFileFolder -> IO (S.SpMatrix Double)
loadMatrixMarket (MatrixFile file) = do
let toDouble [r, c, v] =
( either error fst . TL.decimal $ r
, either error fst . TL.decimal $ c
, either error fst . TL.double $ v
)
toDouble _ = error "Matrix market contains non-standard coordinate."
(rows, cols, _):cs <- fmap
( fmap (toDouble . TL.words)
. dropWhile ((== '%') . TL.head)
. TL.lines
)
. TL.readFile
$ file
return
. S.fromListSM (rows, cols)
. fmap (\(!r, !c, !v) -> (r - 1, c - 1, v))
$ cs
-- | Determine presence of matrix.
extractSc :: Maybe SingleCells -> SingleCells
extractSc = fromMaybe (error "Need to provide matrix in --matrix-path for this functionality.")
-- | Write a matrix to a file.
writeSparseMatrixLike :: MatrixLike (a) => MatrixFileFolder -> a -> IO ()
writeSparseMatrixLike (MatrixFolder folder) mat = do
-- Where to place output files.
FP.createDirectoryIfMissing True folder
writeMatrix (folder </> "matrix.mtx") . spMatToMat . getMatrix $ mat
T.writeFile (folder </> "genes.tsv")
. T.unlines
. V.toList
. getColNames
$ mat
T.writeFile (folder </> "barcodes.tsv")
. T.unlines
. V.toList
. getRowNames
$ mat
return ()
-- | Print a dense matrix to a streaming string.
printDenseMatrixLike :: (MatrixLike a, Monad m)
=> a
-> BS.ByteString m ()
printDenseMatrixLike mat = Stream.encode (Just $ Stream.header header)
. Stream.zipWith (:) rowN
. Stream.each
. fmap (fmap showt . S.toDenseListSV)
. S.toRowsL
. S.transposeSM -- To have cells as columns
. getMatrix
$ mat
where
header = (B.empty :)
. fmap T.encodeUtf8
. V.toList
. getRowNames -- To have rows as columns
$ mat
rowN = Stream.each . V.toList . getColNames $ mat -- To have columns as rows
-- | Write a matrix to a dense file.
writeDenseMatrixLike :: (MatrixLike a) => MatrixFileFolder -> a -> IO ()
writeDenseMatrixLike (MatrixFile file) =
runManaged . SW.writeBinaryFile file . printDenseMatrixLike
-- | Write a MatrixLike to a file (dense) or folder (sparse).
writeMatrixLike :: (MatrixLike a) => MatrixFileFolder -> a -> IO ()
writeMatrixLike o@(MatrixFolder _) = writeSparseMatrixLike o
writeMatrixLike o@(MatrixFile _) = writeDenseMatrixLike o
-- | Check if a name ends with .csv
isCsvFile :: FilePath -> Bool
isCsvFile = (== ".CSV") . fmap toUpper . reverse . take 4 . reverse
-- | Get matrix output format from input name.
getMatrixOutputType :: FilePath -> MatrixFileFolder
getMatrixOutputType x = bool (MatrixFolder x) (MatrixFile x) . isCsvFile $ x