You are working on Singularity: singularity_proj_encode_fcc
BASE DIRECTORY (FD_BASE): /data/reddylab/Kuei
REPO DIRECTORY (FD_REPO): /data/reddylab/Kuei/repo
WORK DIRECTORY (FD_WORK): /data/reddylab/Kuei/work
DATA DIRECTORY (FD_DATA): /data/reddylab/Kuei/data
You are working with ENCODE FCC
PATH OF PROJECT (FD_PRJ): /data/reddylab/Kuei/repo/Proj_ENCODE_FCC
PROJECT RESULTS (FD_RES): /data/reddylab/Kuei/repo/Proj_ENCODE_FCC/results
PROJECT SCRIPTS (FD_EXE): /data/reddylab/Kuei/repo/Proj_ENCODE_FCC/scripts
PROJECT DATA (FD_DAT): /data/reddylab/Kuei/repo/Proj_ENCODE_FCC/data
PROJECT NOTE (FD_NBK): /data/reddylab/Kuei/repo/Proj_ENCODE_FCC/notebooks
PROJECT DOCS (FD_DOC): /data/reddylab/Kuei/repo/Proj_ENCODE_FCC/docs
PROJECT LOG (FD_LOG): /data/reddylab/Kuei/repo/Proj_ENCODE_FCC/log
PROJECT REF (FD_REF): /data/reddylab/Kuei/repo/Proj_ENCODE_FCC/references
Set global variables
Code
TXT_REGION_FOLDER ="encode_open_chromatin"
Define column description
The peak file is in narrowPeak format, which is a standard six field bed with four additional fields (BED6+4 format)
Code
### ENCODE narrowPeak: Narrow (or Point-Source) Peaks formatdat =tribble(~Name, ~Note,"Chrom", "Name of the chromosome","ChromStart", "The starting position of the feature in the chromosome","ChromEnd", "The ending position of the feature in the chromosome","Name", "Name given to a region; Use '.' if no name is assigned.","Score", "Indicates how dark the peak will be displayed in the browser (0-1000).","Strand", "+/- to denote strand or orientation. Use '.' if no orientation is assigned.","SignalValue","Measurement of overall (usually, average) enrichment for the region.","PValue", "Measurement of statistical significance (-log10). Use -1 if no pValue is assigned.","QValue", "Measurement of statistical significance using false discovery rate (-log10). Use -1 if no qValue is assigned.","Peak", "Point-source called for this peak; 0-based offset from chromStart. Use -1 if no point-source called.")### assign and showdat_cnames = datfun_display_table(dat)
Name
Note
Chrom
Name of the chromosome
ChromStart
The starting position of the feature in the chromosome
ChromEnd
The ending position of the feature in the chromosome
Name
Name given to a region; Use '.' if no name is assigned.
Score
Indicates how dark the peak will be displayed in the browser (0-1000).
Strand
+/- to denote strand or orientation. Use '.' if no orientation is assigned.
SignalValue
Measurement of overall (usually, average) enrichment for the region.
PValue
Measurement of statistical significance (-log10). Use -1 if no pValue is assigned.
QValue
Measurement of statistical significance using false discovery rate (-log10). Use -1 if no qValue is assigned.
Peak
Point-source called for this peak; 0-based offset from chromStart. Use -1 if no point-source called.