make_intencities {ProteoMM}R Documentation

Subdivide data into intensities columns only

Description

Subdivide a data frame of protein intensities and metadata into intensities only. No row names will be provided.

Usage

make_intencities(mm, use_cols)

Arguments

mm

data frame of metadata and intensities as a single data frame

use_cols

column numbers to subset and return, no range checking no range checking on the column indeces is performed

Value

m_ints data frame of intensities only

Examples

data(mm_peptides)
head(mm_peptides)
intsCols = 8:13 # different from parameter names as R uses outer name
                # spaces if variable is undefined
m_logInts = make_intencities(mm_peptides, intsCols)


[Package ProteoMM version 1.12.0 Index]