Merge pull request #573 from ggraham/master
[MACS.git] / docs / bdgopt.md
blobadd3e986ebf5d8acc552e9aa723b87196534bd0b
1 # Bdgopt
3 ## Overview
4 The `bdgopt` command is part of the MACS3 suite of tools and is used to modify bedGraph files. It is particularly useful in ChIP-Seq analysis for making specific modifications to the data in bedGraph files.
6 ## Detailed Description
8 The `bdgopt` command takes an input bedGraph file and produces an output file with modified scores. It uses various methods to modify the scores in the bedGraph files, greatly improving the flexibility of your data for further analysis.
10 ## Command Line Options
12 The command line options for `bdgopt` are defined in `/MACS3/Commands/bdgopt_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 bedGraph format.
16 - `-m` or `--method`: The method to use for modification. This can be one of the following: `p2q`, `multiply`, `add`, `max`, `min`.
17 - `-p` or `--extraparam`: The extra parameter for modification. This can be a float value, and its usage depends on the modification method.
19 ## Example Usage
21 Here is an example of how to use the `bdgopt` command:
23 ```bash
24 macs3 bdgopt -i input.bedGraph -o output.bedGraph --method multiply --extraparam 2.0
25 ```
27 In this example, the program will modify the scores in the `input.bedGraph` file and write the result to `output.bedGraph`. The method used for modification is `multiply`, and the extra parameter is set to 2.0, meaning that all scores will be multiplied by 2.0.
29 ## FAQs about `bdgopt`
31 Q: What does `bdgopt` do?
32 A: `bdgopt` is a tool in the MACS3 suite that modifies bedGraph files. It is useful in ChIP-Seq analysis for making specific modifications to the data in bedGraph files.
34 Q: How do I use `bdgopt`?
35 A: You can use `bdgopt` by providing it with an input file, an output file, a modification method, and an extra parameter for modification. See the [Example Usage](#example-usage) section above for an example of how to use `bdgopt`.
37 ## Troubleshooting `bdgopt`
39 If you're having trouble using `bdgopt`, here are some things to try:
41 - Make sure your input file is in the correct format. `bdgopt` requires a bedGraph format file.
42 - Make sure the values you provide for the method and extra parameter are appropriate for your data. If the values are not suitable, you may get inaccurate results.
44 ## Known issues or limitations of `bdgopt`
46 As of now, there are no known issues or limitations with `bdgopt`. If you encounter a problem, please submit an issue on the MACS3 GitHub page.