Hi, here I added some organizational features to your script of comparing replicates , which have to be still further developed. They mainly consist on:
separated block of functional code into blocks so it makes more modular the code and perhaps it is possible to make a function out of them , mainly if they are repeated throughput the whole code .
commenting
import all datasets at the beginning of the code
if the data is not part of the repo you should allow the user to choose the file , if they are not too many , which a clear heading on which file to select.
whenever possible encapsulate large chunks of code into functions and import them , so this will also facilitate further testing of it.
Hi, here I added some organizational features to your script of comparing replicates , which have to be still further developed. They mainly consist on: