def exportIntervalsAsBedsolo(infile, outfile): '''Export list of intervals passing fold change threshold to file ''' fc = PARAMS["intervals_min_fc"] PIntervals.exportMacsIntervalsAsBed(infile, outfile, fc)
def summarizeMACSsolo(infiles, outfile): '''run MACS for peak detection.''' PIntervals.summarizeMACSsolo(infiles, outfile)
def loadMACSsolo(infiles, outfile): infile, bamfile = infiles PIntervals.loadMACS(infile, outfile, bamfile)