writeReport {LineagePulse}R Documentation

Print LineagePulse report

Description

Print LineagePulse report string to .txt file or stdout.

Usage

writeReport(object, file = "")

Arguments

object

(LineagePulseObject) Output object of LineagePulse.

file

(file) [DEFAULT ""] File to print report to. Default is stdout.

Value

nothing to return

Author(s)

David Sebastian Fischer

Examples

   
lsSimulatedData <- simulateContinuousDataSet(
    scaNCells = 10,
    scaNConst = 2,
    scaNLin = 2,
    scaNImp = 2,
    scaMumax = 100,
    scaSDMuAmplitude = 3,
    vecNormConstExternal=NULL,
    vecDispExternal=rep(20, 6),
    vecGeneWiseDropoutRates = rep(0.1, 6))
objLP <- runLineagePulse(
    counts = lsSimulatedData$counts,
    dfAnnotation = lsSimulatedData$annot,
    strMuModel = "impulse")
writeReport(objLP, file="")
  

[Package LineagePulse version 1.12.0 Index]