Skip to content

Commit

Permalink
document arguments with multiple true
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Sep 8, 2023
1 parent 6aa02a4 commit 341db5a
Show file tree
Hide file tree
Showing 29 changed files with 710 additions and 710 deletions.
6 changes: 3 additions & 3 deletions components/modules/annotate/popv.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ Output arguments.
Other arguments.


|Name |Description |Attributes |
|:-----------|:-----------------------------------------------------------------------|:-----------------------------------------------------------------|
|`--methods` |Methods to call cell types. By default, runs to knn_on_scvi and scanvi. |`string`, required, example: `"knn_on_scvi"`, example: `"scanvi"` |
|Name |Description |Attributes |
|:-----------|:-----------------------------------------------------------------------|:-----------------------------------------------------------------------------------|
|`--methods` |Methods to call cell types. By default, runs to knn_on_scvi and scanvi. |List of `string`, required, example: `"knn_on_scvi", "scanvi"`, multiple_sep: `":"` |

## Authors

Expand Down
18 changes: 9 additions & 9 deletions components/modules/cluster/leiden.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ Replace `-profile docker` with `-profile podman` or `-profile singularity` depen

### Arguments

|Name |Description |Attributes |
|:-----------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------|
|`--input` |Input file. |`file`, required, example: `"input.h5mu"` |
|`--modality` | |`string`, default: `"rna"` |
|`--obsp_connectivities` |In which .obsp slot the neighbor connectivities can be found. |`string`, default: `"connectivities"` |
|`--output` |Output file. |`file`, required, example: `"output.h5mu"` |
|`--output_compression` | |`string`, example: `"gzip"` |
|`--obsm_name` |Name of the .obsm key under which to add the cluster labels. The name of the columns in the matrix will correspond to the resolutions. |`string`, default: `"leiden"` |
|`--resolution` |A parameter value controlling the coarseness of the clustering. Higher values lead to more clusters. Multiple values will result in clustering being performed multiple times. |`double`, default: `1` |
|Name |Description |Attributes |
|:-----------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------|
|`--input` |Input file. |`file`, required, example: `"input.h5mu"` |
|`--modality` | |`string`, default: `"rna"` |
|`--obsp_connectivities` |In which .obsp slot the neighbor connectivities can be found. |`string`, default: `"connectivities"` |
|`--output` |Output file. |`file`, required, example: `"output.h5mu"` |
|`--output_compression` | |`string`, example: `"gzip"` |
|`--obsm_name` |Name of the .obsm key under which to add the cluster labels. The name of the columns in the matrix will correspond to the resolutions. |`string`, default: `"leiden"` |
|`--resolution` |A parameter value controlling the coarseness of the clustering. Higher values lead to more clusters. Multiple values will result in clustering being performed multiple times. |List of `double`, default: `1`, multiple_sep: `":"` |

## Authors

Expand Down
12 changes: 6 additions & 6 deletions components/modules/convert/from_h5ad_to_h5mu.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ Replace `-profile docker` with `-profile podman` or `-profile singularity` depen

### Arguments

|Name |Description |Attributes |
|:----------------------|:-------------------|:-----------------------------------------|
|`--input` |Input h5ad files |`file`, required, default: `"input.h5ad"` |
|`--modality` | |`string`, default: `"rna"` |
|`--output` |Output MuData file. |`file`, default: `"output.h5mu"` |
|`--output_compression` | |`string`, example: `"gzip"` |
|Name |Description |Attributes |
|:----------------------|:-------------------|:----------------------------------------------------------------------|
|`--input` |Input h5ad files |List of `file`, required, default: `"input.h5ad"`, multiple_sep: `":"` |
|`--modality` | |List of `string`, default: `"rna"`, multiple_sep: `":"` |
|`--output` |Output MuData file. |`file`, default: `"output.h5mu"` |
|`--output_compression` | |`string`, example: `"gzip"` |

## Authors

Expand Down
Loading

0 comments on commit 341db5a

Please sign in to comment.