Learn R Programming

pepr (version 0.5.0)

getSubsample: Extract subsamples

Description

This method extracts the subsamples

Usage

getSubsample(.Object, sampleName, subsampleName)

# S4 method for Project,character,character getSubsample(.Object, sampleName, subsampleName)

Value

data.table one row data table with the subsample associated metadata

Arguments

.Object

An object of Project class

sampleName

character the name of the sample

subsampleName

character the name of the subsample

Methods (by class)

  • getSubsample( .Object = Project, sampleName = character, subsampleName = character ): extracts the subsamples from the "Project" object

Examples

Run this code
projectConfig = system.file(
"extdata",
"example_peps-master",
"example_subtable1",
"project_config.yaml",
package = "pepr"
)
p = Project(projectConfig)
sampleName = "frog_1"
subsampleName = "sub_a"
getSubsample(p, sampleName, subsampleName)

Run the code above in your browser using DataLab