mbcb.gui: MBCB - Model-Based Background Correction for Illumina...

Description Usage Value Note Author(s) See Also Examples

View source: R/bg.guiNoBead.R

Description

This file provides the Graphical-User-Interface for the MBCB package.

Usage

1

Value

This GUI will allow you to easily input data files and a negative-control file and will output a log2-transformed background-corrected file.

Note

The input files should be tab-delimited files in the following form:

signal.txt

1
2
3
4
				g.1	g.2	g.3	g.4
10181072_239_rc-S	160.3	776.4	135.8	407.7
10181072_290-S		138.1	219.8	122.1	142.4
...			...	...	...	...

neg-con.txt

1
2
3
4
id	g.1	g.2	g.3	g.4
50133	127	213.5	82	103
50315	232	295	143.5	156
...	...	...	...	...

Note that both of these examples come from a test involving four trials. Your data could use whatever number you'd like.

Author(s)

Yang Xie Yang.Xie@UTSouthwestern.edu, Min Chen min.chen@phd.mccombs.utexas.edu, Jeff Allen Jeffrey.Allen@UTSouthwestern.edu

See Also

mbcb.main

Examples

1
2
3
4
5
6
7
8
9
  data(MBCBExpressionData)

  #create files from the data provided in this package in the current directory
  write.table(expressionSignal, 'signal.txt', sep="\t");
  write.table(negativeControl, 'negative.control.txt', sep="\t");

  #open the GUI; you can use the files just created as input for the signal and
  #   negative control files.
  mbcb.gui();

MBCB documentation built on Nov. 8, 2020, 5:49 p.m.

Related to mbcb.gui in MBCB...