update version. tweak the test (install cython 3.0 for non-x64)
[MACS.git] / docs / bdgpeakcall.md
blob9128669999283db5eeb0615a8ec26d4e681d16c7
1 # Bdgpeakcall
3 ## Overview
4 The `bdgpeakcall` command is part of the MACS3 suite of tools and is used to call peaks from a single bedGraph track for scores. It is particularly useful in ChIP-Seq analysis for identifying peaks in the data.
6 ## Detailed Description
8 The `bdgpeakcall` command takes an input bedGraph file and produces an output file with peaks called. It uses an efficient algorithm to detect and call peaks, greatly improving the quality of your data for further analysis.
10 ## Command Line Options
12 The command line options for `bdgpeakcall` are defined in `/MACS3/Commands/bdgpeakcall_cmd.py` and `/bin/macs3` files. Here is a brief overview of these options:
14 - `-i` or `--ifile`: The input file. This should be in bedGraph format. This option is required.
15 - `-o` or `--ofile`: The output file. This will be in narrowPeak format.
16 - `-c` or `--cutoff`: The cutoff for calling peaks. This is a float value.
17 - `-l` or `--minlen`: The minimum length of peaks. This is an integer value.
18 - `-g` or `--maxgap`: The maximum gap between peaks. This is an integer value.
19 - `--cutoff-analysis`: An option to analyze cutoff versus the number of peaks, total length of peaks, and average length of peak.
21 ## Example Usage
23 Here is an example of how to use the `bdgpeakcall` command:
25 ```bash
26 macs3 bdgpeakcall -i input.bedGraph -o output.narrowPeak --cutoff 1.0 --minlen 500 --maxgap 1000 --cutoff-analysis
27 ```
29 In this example, the program will call peaks from the `input.bedGraph` file and write the result to `output.narrowPeak`. The cutoff for calling peaks is set to 1.0, the minimum length of peaks is set to 500, the maximum gap between peaks is set to 1000, and the cutoff-analysis option is enabled.
31 ## FAQs about `bdgpeakcall`
33 Q: What does `bdgpeakcall` do?
34 A: `bdgpeakcall` is a tool in the MACS3 suite that calls peaks from a single bedGraph track for scores. It is useful in ChIP-Seq analysis for identifying peaks in the data.
36 Q: How do I use `bdgpeakcall`?
37 A: You can use `bdgpeakcall` by providing it with an input file, an output file, and optional parameters that control its behavior. See the [Example Usage](#example-usage) section above for an example of how to use `bdgpeakcall`.
39 ## Troubleshooting `bdgpeakcall`
41 If you're having trouble using `bdgpeakcall`, here are some things to try:
43 - Make sure your input file is in the correct format. `bdgpeakcall` requires a bedGraph format file.
44 - Make sure the values you provide for cutoff, minlen, and maxgap are appropriate for your data. If the values are too small or too large, you may get inaccurate results.
46 ## Known issues or limitations of `bdgpeakcall`
48 As of now, there are no known issues or limitations with `bdgpeakcall`. If you encounter a problem, please submit an issue on the MACS3 GitHub page.