49c2e542 |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/CDFfromGTF_Multipath.R
\name{CDFfromGTF_Multipath}
\alias{CDFfromGTF_Multipath}
|
fe97789d |
\title{CDF file creation for EventPointer (MultiPath)}
|
49c2e542 |
\usage{
|
cd9415c2 |
CDFfromGTF_Multipath(
input = "Ensembl",
inputFile = NULL,
PSR,
Junc,
PathCDF,
microarray = NULL,
paths = 2
)
|
49c2e542 |
}
\arguments{
|
4789d9fb |
\item{input}{Reference transcriptome used to build the CDF file. Must be one of Ensembl,
UCSC or GTF.}
|
49c2e542 |
\item{inputFile}{If input is GTF, inputFile should point to the GTF file to be used.}
\item{PSR}{Path to the Exon probes txt file}
\item{Junc}{Path to the Junction probes txt file}
\item{PathCDF}{Directory where the output will be saved}
|
4789d9fb |
\item{microarray}{Microarray used to create the CDF file. Must be one of: HTA-2_0,
ClariomD, RTA or MTA}
|
49c2e542 |
\item{paths}{Maximum number of paths of the events to find.}
}
\value{
|
4789d9fb |
The function displays a progress bar to show the user the progress of the function.
|
fe97789d |
However, there is no value returned in R as the function creates three files that are used
|
4789d9fb |
later by other EventPointer functions. 1) EventsFound.txt : Tab separated file with all
the information of all the alternative splcing events found. 2) .flat file : Used to build
the corresponding CDF file. 3) .CDF file: Output required for the aroma.affymetrix preprocessing
pipeline. Both the .flat and .CDF file take large ammounts of memory in the hard drive, it is
|
49c2e542 |
recommended to have at least 1.5 GB of free space.
}
\description{
|
fe97789d |
Generates the CDF file to be used under the aroma.affymetrix framework.
|
49c2e542 |
}
\examples{
|
702b1aaa |
\dontrun{
|
49c2e542 |
PathFiles<-system.file('extdata',package='EventPointer')
DONSON_GTF<-paste(PathFiles,'/DONSON.gtf',sep='')
PSRProbes<-paste(PathFiles,'/PSR_Probes.txt',sep='')
JunctionProbes<-paste(PathFiles,'/Junction_Probes.txt',sep='')
Directory<-tempdir()
|
51df8db0 |
microarray<-'HTA-2_0'
|
49c2e542 |
# Run the function
|
4789d9fb |
CDFfromGTF_Multipath(input='AffyGTF',inputFile=DONSON_GTF,PSR=PSRProbes,Junc=JunctionProbes,
PathCDF=Directory,microarray=microarray,paths=3)
|
702b1aaa |
}
|
49c2e542 |
}
|