update version. tweak the test (install cython 3.0 for non-x64)
[MACS.git] / docs / bdgcmp.md
blob1829668c5e36d8bdcaaaf26684cddb7cb180ec44
1 # Bdgcmp
3 ## Overview
4 The `bdgcmp` command is part of the MACS3 suite of tools and is used to compare bedGraph files. It is particularly useful in ChIP-Seq analysis for comparing different bedGraph files.
6 ## Detailed Description
8 The `bdgcmp` command takes two input bedGraph files and produces an output file with comparison scores. It uses an efficient algorithm to compare the bedGraph files, greatly improving the quality of your data for further analysis.
10 ## Command Line Options
12 The command line options for `bdgcmp` are defined in `/MACS3/Commands/bdgcmp_cmd.py` and `/bin/macs3` files. Here is a brief overview of these options:
14 - `-t` or `--tfile`: The treatment file. This should be in bedGraph format. This option is required.
15 - `-c` or `--cfile`: The control file. This should be in bedGraph format. This option is required.
16 - `-m` or `--method`: The method to use for comparison. This can be one of the following: `ppois`, `qpois`, `subtract`, `logFE`, `FE`, `logLR`, `slogLR`, `max`.
17 - `-p` or `--pseudocount`: The pseudo-count to use for comparison. This is a float value.
18 - `-S` or `--sfactor`: The scaling factor. This is a float value.
19 - `-o` or `--ofile`: The output file. This will be in bedGraph format.
21 ## Example Usage
23 Here is an example of how to use the `bdgcmp` command:
25 ```bash
26 macs3 bdgcmp -t treatment.bedGraph -c control.bedGraph -m ppois -p 1.0 -S 1.0 -o output.bedGraph
27 ```
29 In this example, the program will compare the `treatment.bedGraph` file and the `control.bedGraph` file and write the result to `output.bedGraph`. The method used for comparison is `ppois`, the pseudo-count is set to 1.0, and the scaling factor is set to 1.0.
31 ## FAQs about `bdgcmp`
33 Q: What does `bdgcmp` do?
34 A: `bdgcmp` is a tool in the MACS3 suite that compares bedGraph files. It is useful in ChIP-Seq analysis for comparing different bedGraph files.
36 Q: How do I use `bdgcmp`?
37 A: You can use `bdgcmp` by providing it with two input files (treatment and control), 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 `bdgcmp`.
39 ## Troubleshooting `bdgcmp`
41 If you're having trouble using `bdgcmp`, here are some things to try:
43 - Make sure your input files are in the correct format. `bdgcmp` requires two bedGraph format files.
44 - Make sure the values you provide for pseudo-count and scaling factor 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 `bdgcmp`
48 As of now, there are no known issues or limitations with `bdgcmp`. If you encounter a problem, please submit an issue on the MACS3 GitHub page.