Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Expand
Code Block
cat RIPregions.gff3
chr19	rtracklayer	sequence_feature	47545201	47545400	.	*	.	count=829; fpk=4145; logOddScore=65.8422503917559; pval=0; pvalAdj=0; CTL_count=1491; CTL_fpk=7455; CTL_logOddScore=-61.5676075214777; eFDR=0

Go here to look at it in the genome browser - see anything interesting?

We can also open R interactively to look at the contents of the big "seekOutput.RData" file we made.  We need to use the R set up by the BioITeam, rather than the one in the module system, so we can use a version 3.x.  These are a possible sequence of commands:

Code Block
cd $SCRATCH/ripseq_exercises/CLIP/
$BI/bin/R
 
#Now we are in R
 
library(RIPSeeker, lib.loc="./lib")
rip_data = load("seekOutput.RData")
rip
# [1] "mainSeekOutputRIP" "RIPGRList"         "mainSeekOutputCTL"
# [4] "annotatedRIPGR"

Here, "rip_data" is a list of four objects that we just loaded into R, and each contains different sub-objects and information.

ObjectComponent ObjectsInformation Content
mainSeekOutputRIP

nbhGRList

alignGal

alignGalFiltered

Information such as the HMM posterior probabilities and filtered alignment objects for the RIP sample
RIPGRLista GRangesListA list (in GRanges object form) of all peak regions called by RIPSeeker
mainSeekOutputCTL

nbhGRList

alignGal

alignGalFiltered

Information such as the HMM posterior probabilities and filtered alignment objects for the CTL sample
annotatedRIPGR

sigGRangesAnnotated

enrichedGO

Annotations for each of the regions flagged in RIPGRList, as well as calling of significantly enriched GO terms for those regions; this only works if "ChIPpeakAnno" is loaded and you set the functions biomaRt, biomaRt_dataset, and goAnno (see below)

Alternatives

We could have added these lines to the ripseeker_script.R file:

...