Hi Collin,
> In the attached documentation, section 4 is for running IDR on all pairs of
> reps, psuedoreps, etc. I am curious as to how much of the BASH code in this
> section is replaced by the new IDR pipeline i.e. creating a pooled set of
> peaks, recalibrating peaks, etc.
The new idr code should replace most of section 4a. You still need to
run the peak caller on the replicates, mered set, pseudo replicates,
etc., but now rather than using bedtools to recalibrate peaks you can
just run:
idr --samples ${REP1_PEAK_FILE} ${REP2_PEAK_FILE} --peak-list
${POOLED_COMMON_PEAKS_IDR} --plot
which will output a narrowPeak file, plus some additional fields. I've
tried to be clearly document the new output format in the README
(
https://github.com/nboley/idr) - please let me know if anything is
unclear.
> From what I can tell, the output formats
> are different between the two versions of IDR, and while the new IDR has the
> option for outputting the old format, I haven't had any luck getting this to
> run.
Thanks for pointing out the problem - I'll push a fix tomorrow.
Best, Nathan