The Raute are Nepal's last nomadic hunter-gatherers, providing a unique perspective on the genetic and demographic history of Himalayan foragers. This study utilizes newly genotyped genome-wide SNP data to investigate their genetic isolation, origins, and connections to other regional foragers.
The research involved genotyping 120 Raute individuals and 47 individuals from surrounding agriculturalist villages, totaling 167 unique samples. The methods included:
This study contributes to understanding human population dynamics in the Himalayas, particularly the interactions between foraging and farming groups. It highlights the need for further research into the historical connectivity and environmental influences on genetic diversity.
The study's conclusions are limited by the small sample size of the Raute population and potential biases in genetic data interpretation due to high relatedness among individuals.
Below is a graph illustrating the effective population size (Ne) of the Raute over time:
import pandas as pd import numpy as np from scipy import stats # Load SNP data snp_data = pd.read_csv('raute_snp_data.csv') # Calculate effective population size (Ne) # Placeholder for actual Ne calculation logic Ne = np.mean(snp_data['Ne']) # Calculate runs of homozygosity (ROH) roh = snp_data[snp_data['homozygous'] == True] roh_length = roh['length'].sum() print(f'Effective Population Size: {Ne}') print(f'Total ROH Length: {roh_length}')