Skip to content

Commit

Permalink
Make never / always optional
Browse files Browse the repository at this point in the history
  • Loading branch information
pcm32 committed May 11, 2024
1 parent 7f37aee commit 11bbc9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/tertiary-analysis/scanpy/scanpy-find-variable-genes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ PYTHONIOENCODING=utf-8 scanpy-find-variable-genes
<param name="filter" argument="--subset" type="boolean" truevalue="--subset" falsevalue="" checked="false"
label="Remove genes not marked as highly variable" help="When set, inplace subset to highly-variable genes, otherwise only flag highly-variable genes."/>
<param name="batch_key" argument="--batch-key" type="text" label="Batch key" optional="true" help="If specified, highly-variable genes are selected within each batch separately and merged. This simple process avoids the selection of batch-specific genes and acts as a lightweight batch correction method. For all flavors, genes are first sorted by how many batches they are a HVG. For dispersion-based flavors ties are broken by normalized dispersion. If flavor = 'seurat_v3', ties are broken by the median (across batches) rank based on within-batch normalized variance."/>
<param name="never_hvg" argument="--never-hv-genes-file" type="data" label="Genes that should never be HVGs" help="Provide a file, one gene identifier per line, with genes that should never be active as HVGs. This simply makes sure that the boolean value for HVGs is false for all these genes after computing HVGs"/>
<param name="always_hvg" argument="--always-hv-genes-file" type="data" label="Genes that should never be HVGs" help="Provide a file, one gene identifier per line, with genes that should always be active as HVGs. This simply makes sure that the boolean value for HVGs is true for all these genes after computing HVGs"/>
<param name="never_hvg" argument="--never-hv-genes-file" optional="true" type="data" label="Genes that should never be HVGs" help="Provide a file, one gene identifier per line, with genes that should never be active as HVGs. This simply makes sure that the boolean value for HVGs is false for all these genes after computing HVGs"/>
<param name="always_hvg" argument="--always-hv-genes-file" optional="true" type="data" label="Genes that should never be HVGs" help="Provide a file, one gene identifier per line, with genes that should always be active as HVGs. This simply makes sure that the boolean value for HVGs is true for all these genes after computing HVGs"/>
</inputs>

<outputs>
Expand Down

0 comments on commit 11bbc9a

Please sign in to comment.