Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions gemelli/_defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
DESC_ITERATIONS = ("The number of iterations to optimize the solution"
" (suggested to be below 100; beware of overfitting)"
" [minimum 1]")
DESC_INIT = ("The number of initialization vectors. Larger values will"
DESC_INIT = ("The number of initialization vectors. Larger values will "
"give more accurate factorization but will be more "
"computationally expensive [minimum 1]")
DESC_ITERATIONSALS = ("Max number of Alternating Least Square (ALS)"
Expand Down Expand Up @@ -58,11 +58,12 @@
" across which samples are paired."
" At least one is required but up to four are allowed"
" by other state inputs.")
QORD = ("A trajectory is an ordination that can be visualized"
QORD = ("A '%s trajectory ordination' that can be visualized "
"over time or another context.")
QDIST = ("A sample-sample distance matrix generated from "
" the euclidean distance of the subject-state "
"ordinations and itself.")
" the Euclidean distance of the subject-state "
"ordinations and itself. Similar to the distance matrix produced by"
" RPCA except it also accounts for the subject and state context.")
QLOAD = ("Compositional biplot of subjects as points and features as arrows."
" Where the variation between subject groupings is explained by the"
" log-ratio between opposing arrows. "
Expand Down
4 changes: 2 additions & 2 deletions gemelli/q2/plugin_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
output_descriptions={'subject_biplot': QLOAD,
'state_biplot': QSOAD,
'distance_matrix': QDIST,
'state_subject_ordination': QORD,
'state_feature_ordination': QORD},
'state_subject_ordination': QORD % 'subject',
'state_feature_ordination': QORD % 'feature'},
name='Compositional Tensor Factorization (CTF) with mode 3 tensor. This '
'means subjects have repeated measures across only one '
'axis (e.g. time or space).',
Expand Down