git clone https://github.com/SATAY-LL/comparative-analysis-among-strains.git
cd Data-analysis-multiple-strains
conda env create --file environment.yml
conda activate satay-analysis
This is a bash code to convert comma separated files to tab separated files, if needed.
cat oldfile.txt | tr '[,]' '[\t]' > newfile.txt
- Convert the modified notebooks to .py files with
jupytext
jupytext --to py <your-notebook>.ipynb
- Add and commit the .py files to the repository
git add <your-notebook>.py
git commit -m "<commit -message>"
- Push the changes to the repository
This way of versioning the notebooks are taken from this blog Version Control With Jupyter Notebook.