Description
t-SNE (t-Distributed Stochastic Neighbor Embedding) is a dimensionality reduction technique used to visualize high-dimensional data in a low-dimensional space, revealing patterns and clusters by preserving local data similarities.
Run the following command to execute this component with Nextflow:
cat > params.yaml <<'EOM'
modality: [ "rna" ]
output: "$id.$key.output.h5mu"
obsm_output: [ "X_tsne" ]
n_pcs: [ 50 ]
perplexity: [ 30 ]
min_dist: [ 0.5 ]
metric: [ "euclidean" ]
early_exaggeration: [ 12 ]
learning_rate: [ 1000 ]
random_state: [ 0 ]
id: "run"
publish_dir: "output/"
EOM
nextflow run https://packages.viash-hub.com/vsh/openpipeline.git \
-revision v4.0.2 \
-main-script target/nextflow/dimred/tsne/main.nf \
-params-file params.yaml Name | Type & Properties |
|---|---|
--input | file required |
--modality | string required |
--use_rep | string required |
Name | Type & Properties |
|---|---|
--output -o | file required output |
--obsm_output | string |
--output_compression | string |
Name | Type & Properties |
|---|---|
--n_pcs | integer |
--perplexity | double |
--min_dist | double |
--metric | string |
--early_exaggeration | double |
--learning_rate | double |
--random_state | integer |