-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Peak calling parameter chip.fdr_thresh never changes from default 0.01 #204
Comments
Exactly the same issue I am facing with. "fdr_thresh" value never changes. |
We'll fix this very soon
…On Tue, Dec 15, 2020, 9:48 AM ambeys ***@***.***> wrote:
Exactly the same issue I am facing with. "fdr_thresh" value never changes.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#204 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABDWEL3745WXJEWZHYQIKDSU6ONLANCNFSM4UXEARWQ>
.
|
@alexadowdell: Sorry about late response. I would like to check if |
@leepc12: Thanks for working on it! I've attached the |
I checked that Can you also post I would like to check if |
@leepc12 Please see attached |
I found this in the script.
Also this one in
So it looks like Can you try with more relaxed threshold and also check the quality of your samples in the alignment level? e.g. mapping rate, number of reads after filtering. |
If numpeaks_threshold is specified, the FDR parameter gets ignored.
If you want to use a specific FDR then don't set the num_peaks parameter.
…-Anshul.
On Thu, Jan 7, 2021 at 2:44 PM Jin Lee ***@***.***> wrote:
I found this in the script.
Rscript --max-ppsize=500000 $(which run_spp.R) ... -fdr=0.05
Also this one in run_spp.R's log.
...
exclusion(max): NaN
num parallel nodes: NA
FDR threshold: 0.05
NumPeaks Threshold: 3e+05
Output Directory: /home/ubuntu/20200730_KRISTINA_CHIPSEQ/ENCODE_pipeline/chip/48b7b1c3-fd32-4b62-a287-c976e200f5f8/call-call_peak/shard-0/execution
...
So it looks like run_spp.R took in fdr_thresh as 0.05 correctly, but it
ignored the threshold somehow or your peaks didn't even hit the relaxed
threshold 0.05.
Can you try with more relaxed threshold and also check the quality of your
samples in the alignment level? e.g. mapping rate, number of reads after
filtering.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#204 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABDWEKBKI635KE7PB3MOXLSYY2ORANCNFSM4UXEARWQ>
.
|
To be more clear, num_peaks overrides the FDR parameter. If num_peaks is
set, the FDR gets set to 0.99 to a complete ranked list of bins and then
upto num_peaks of the top ranked peaks are used.
If you set the FDR and just don't set num_peaks, then it will just use the
FDR to get whatever peaks pass the FDR.
The SPP FDR is not very stable or easy to set parameter. For small changes
in FDR, you can get massive changes in peaks. Or for large changes in FDR
you can get no changes in peaks.
This is why we usually just call as many peaks as possible, take the top
300K and pass it through IDR to adaptively learn the thresholds.
…-Anshul.
On Thu, Jan 7, 2021 at 2:55 PM Anshul Kundaje ***@***.***> wrote:
If numpeaks_threshold is specified, the FDR parameter gets ignored.
If you want to use a specific FDR then don't set the num_peaks parameter.
-Anshul.
On Thu, Jan 7, 2021 at 2:44 PM Jin Lee ***@***.***> wrote:
> I found this in the script.
>
> Rscript --max-ppsize=500000 $(which run_spp.R) ... -fdr=0.05
>
> Also this one in run_spp.R's log.
>
> ...
> exclusion(max): NaN
> num parallel nodes: NA
> FDR threshold: 0.05
> NumPeaks Threshold: 3e+05
> Output Directory: /home/ubuntu/20200730_KRISTINA_CHIPSEQ/ENCODE_pipeline/chip/48b7b1c3-fd32-4b62-a287-c976e200f5f8/call-call_peak/shard-0/execution
> ...
>
> So it looks like run_spp.R took in fdr_thresh as 0.05 correctly, but it
> ignored the threshold somehow or your peaks didn't even hit the relaxed
> threshold 0.05.
>
> Can you try with more relaxed threshold and also check the quality of
> your samples in the alignment level? e.g. mapping rate, number of reads
> after filtering.
>
> —
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <#204 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AABDWEKBKI635KE7PB3MOXLSYY2ORANCNFSM4UXEARWQ>
> .
>
|
It looks like the numpeaks_threshold is set by default to 3e+05. It's not a parameter specifically passed in the input json. Is there a way to not set the num_peaks parameter? |
The run_spp.R script can take it either parameter or both.
Jin - you may need to adjust the way num_peaks is being set to allow for
direct use of the FDR parameter. If the user specifies FDR explicitly in
the JSON then num_peaks should not be used when calling run_spp.R
…-Anshul.
On Thu, Jan 7, 2021 at 2:58 PM Alexa Dowdell ***@***.***> wrote:
It looks like the numpeaks_threshold is set by default to 3e+05. It's not
a parameter specifically passed in the input json. Is there a way to not
set the num_peaks parameter?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#204 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABDWENH4EFOQ3TXH7JE26LSYY4ARANCNFSM4UXEARWQ>
.
|
@alexadowdell: Currently there is no way to unset numpeaks_threshold ( |
I am trying to change |
Describe the bug
I'm running the transcription factor chipseq pipeline. I have one sample out of 16 that failed the pipeline. I'm trying to determine whether the sample may be poor or whether I can recover some peaks by loosening the fdr threshold from the default 0.01 it was originally run at. The pipeline failed with the following error:
Exception: File is empty (20200622_Chip_H1_S8_L001_R1_001.merged.nodup.pr2_x_20200622_Chip_G1_S7_L001_R1_001.merged.nodup.300K.regionPeak.gz). Help: No peaks found. FDR threshold (fdr_thresh in your input JSON) might be too stringent or poor quality sample?
I went back into my input json and added a chip.fdr_thresh of 0.05 and re-ran the pipeline. I received the exact same results. I re-ran again with fdr of 0.2 in an attempt to sanity check and received the same results. For the other samples that successfully made it through the pipeline the html output at fdr of 0.05 and 0.2 never changes, the number of peaks and everything remains the same as what originally was called at the default fdr level. Along those same lines the number of raw peaks called (capped at 300000) says "at an fdr of 0.01" in the html in every case, even when I specifically changed the fdr parameter in the input json. I then went into the metadata.json and grepped for fdr_thresh and confirmed the fdr threshold was the value I passed in the input json but the results are always at a fdr of 0.01 regardless of what the input json and metadata.json has. Down below in the troubleshooting section is the output from grepping the metadata.json for "fdr_thresh".
OS/Platform
Caper configuration file
Paste contents of
~/.caper/default.conf
.Input JSON file
Paste contents of your input JSON file.
Troubleshooting result
If you ran
caper run
without Caper server then Caper automatically runs a troubleshooter for failed workflows. Find troubleshooting result in the bottom of Caper's screen log.If you ran
caper submit
with a running Caper server then first find your workflow ID (1st column) withcaper list
and runcaper debug [WORKFLOW_ID]
.Paste troubleshooting result.
Since the pipeline failing isn't exactly the problem right now, below are contents of metadata.json confirming changed fdr_thresh value.
The text was updated successfully, but these errors were encountered: