Skip to content

Commit

Permalink
Small style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jfnavarro committed May 29, 2020
1 parent 9e48141 commit be8c70b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/analysis/AnalysisClustering.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ class AnalysisClustering : public QWidget
explicit AnalysisClustering(QWidget *parent = nullptr, Qt::WindowFlags f = 0);
virtual ~AnalysisClustering();

// One color (color representation of cluster number) for each spot
// One color (integer value) for each spot
const QVector<QPair<QString,int>> &getSpotClusters() const;

// List of spots for each cluster
// List of spots for each cluster (integer value)
QMultiHash<int, QString> getClustersSpot() const;

// assigns the dataset
Expand All @@ -51,7 +51,7 @@ public slots:
private slots:

// Performs a dimensionality reduction (t-SNE or PCA) on the data matrix and then
// clusters the reduced coordinates (2D) using KMeans so to compute classes/colors
// cluster the reduced coordinates (2D) using KMeans so to compute classes/colors
// for each spot
void slotRun();

Expand Down
4 changes: 2 additions & 2 deletions src/analysis/AnalysisCorrelation.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class analysisCorrelation;

QT_CHARTS_USE_NAMESPACE

// This Widget takes two datasets (selections)
// and computes correlation value for the common genes
// This Widget takes two datasets
// and computes a correlation value for the common genes
// it allows to normalize using the log scale and also to click and
// show the clicked gene
class AnalysisCorrelation : public QWidget
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/AnalysisDEA.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class analysisDEA;
}

// AnalysisDEA is a widget that contains methods to compute
// DEA(Differential Expression Analysis) between two ST data selections
// DEA(Differential Expression Analysis) between two ST datasets
// It shows the results in a volcano plot and a table
// that highlights the differently expressed genes at a given threshold
class AnalysisDEA : public QWidget
Expand Down

0 comments on commit be8c70b

Please sign in to comment.