Skip to content

Commit

Permalink
change arg default value
Browse files Browse the repository at this point in the history
  • Loading branch information
jykr committed Mar 28, 2024
1 parent e938d8c commit 82773ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ Above command produces
* `--device`: Optionally use GPU if provided valid GPU device name (ex. cuda:0)
* `--ignore-bcmatch` (default: `False`): If provided, even if the screen object has .X_bcmatch, ignore the count when fitting.
* `--allele-df-key` (default: `allele_counts`): bdata.uns[allele_df_key] will be used as the allele count.
* `--control-guide-tag` (default: `CONTROL`): (Relevant in bean-run *tiling* mode) If this string is in guide name, treat each guide separately not to mix the position. Used for non-targeting negative controls.
* `--control-guide-tag` (default: `None`): (Relevant in bean-run *tiling* mode) If this string is in guide name, treat each guide separately not to mix the position. Used for non-targeting negative controls.
* Guide annotations (`bdata.guides` column keys)
* `--acc-col`: Column name in bdata.guides that specify raw ATAC-seq signal.
* `--target-column` (default: `target`): Column key in `bdata.guides` that describes the target element of each guide.
Expand Down
2 changes: 1 addition & 1 deletion bean/model/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def parse_args():
parser.add_argument(
"--control-guide-tag",
type=none_or_str,
default="CONTROL",
default=None,
help="If this string is in guide name, treat each guide separately not to mix the position. Used for negative controls.",
)
parser.add_argument(
Expand Down

0 comments on commit 82773ad

Please sign in to comment.