jaspershen-lab / ipop_aging

Code for aging project
MIT License
26 stars 11 forks source link

iPOP Aging Project

Welcome to the iPOP Aging repository! This repository contains code and documentation related to the iPOP Aging project.

About iPOP Aging Project

iPOP Aging is a research project focused on studying the effects of aging on the human body. Our goal is to understand the molecular nonlinear changes that occur in the human body as it ages, and help us better understand the aging process.

Repository Structure

Contact

If you have any questions or feedback, please feel free to reach out to us at xiaotao.shen@outlook.com and mpsnyder@stanford.edu.

For authors only

How to ignore the files > 5M

Step 1: Create a Script to Ignore Large Files

Create a script file (e.g., ignore_large_files.sh):

#!/bin/bash

# Find all files larger than 5MB and add them to .gitignore
find . -type f -size +5M | sed 's|^\./||' >> .gitignore

# Remove duplicate entries from .gitignore
sort -u -o .gitignore .gitignore

echo "All files larger than 5MB have been added to .gitignore."

Step 2: Make the Script Executable

Make sure the script is executable:

chmod +x ignore_large_files.sh

Step 3: Run the Script

Run the script to update your .gitignore:

./ignore_large_files.sh