I ran a small test set through RENEE v2.5.11 and it failed at the RNA report. The failure occured at the prcomp step which will identify the PCA axis to use downstream. This occurs because the current code is hardcoded to select the first 3 PCA's:
My data set only included 2 samples which were replicates of one another, which meant that the third PCA data values were close to 0 and therefore excluded from the dataset.
Solution
Update the code to determine if there are three PCA's values. If there are, then utilize these three values. If there is not then only use the first two values.
Problem:
I ran a small test set through RENEE v2.5.11 and it failed at the RNA report. The failure occured at the
prcomp
step which will identify the PCA axis to use downstream. This occurs because the current code is hardcoded to select the first 3 PCA's:My data set only included 2 samples which were replicates of one another, which meant that the third PCA data values were close to 0 and therefore excluded from the dataset.
Solution
Update the code to determine if there are three PCA's values. If there are, then utilize these three values. If there is not then only use the first two values.