|
|
|
from tools.preprocess import * |
|
|
|
|
|
trait = "Mitochondrial_Disorders" |
|
cohort = "GSE42986" |
|
|
|
|
|
in_trait_dir = "../DATA/GEO/Mitochondrial_Disorders" |
|
in_cohort_dir = "../DATA/GEO/Mitochondrial_Disorders/GSE42986" |
|
|
|
|
|
out_data_file = "./output/preprocess/3/Mitochondrial_Disorders/GSE42986.csv" |
|
out_gene_data_file = "./output/preprocess/3/Mitochondrial_Disorders/gene_data/GSE42986.csv" |
|
out_clinical_data_file = "./output/preprocess/3/Mitochondrial_Disorders/clinical_data/GSE42986.csv" |
|
json_path = "./output/preprocess/3/Mitochondrial_Disorders/cohort_info.json" |
|
|
|
|
|
soft_file_path, matrix_file_path = geo_get_relevant_filepaths(in_cohort_dir) |
|
|
|
|
|
background_info, clinical_data = get_background_and_clinical_data(matrix_file_path) |
|
print("Background Information:") |
|
print(background_info) |
|
print("\nSample Characteristics:") |
|
|
|
|
|
unique_values_dict = get_unique_values_by_row(clinical_data) |
|
for row, values in unique_values_dict.items(): |
|
print(f"\n{row}:") |
|
print(values) |
|
|
|
raw_clinical_data = { |
|
0: ['tissue: Skeletal muscle', 'tissue: fibroblast cell line'], |
|
1: ['respiratory chain complex deficiency: No Respiratory Chain Complex Deficiency', |
|
'respiratory chain complex deficiency: Complexes I and III', |
|
'respiratory chain complex deficiency: Complex IV', |
|
'respiratory chain complex deficiency: Complexes II and III', |
|
'respiratory chain complex deficiency: Not measured; 87% mtDNA depletion in muscle', |
|
'respiratory chain complex deficiency: Complex IV; 70% mtDNA depletion in liver', |
|
'respiratory chain complex deficiency: Complex IV; 93% mtDNA depletion in muscle', |
|
'respiratory chain complex deficiency: Complexes I and IV', |
|
'respiratory chain complex deficiency: Complex I', |
|
'respiratory chain complex deficiency: Complex I and IV', |
|
'respiratory chain complex deficiency in muscle: Not Determined', |
|
'respiratory chain complex deficiency in muscle: Complex I+III Deficiency', |
|
'respiratory chain complex deficiency in muscle: No Respiratory Chain Complex Deficiency', |
|
'respiratory chain complex deficiency in muscle: Complexes I and III', |
|
'respiratory chain complex deficiency in muscle: Complex IV', |
|
'respiratory chain complex deficiency in muscle: Complexes II and III', |
|
'respiratory chain complex deficiency in muscle: Complex IV; 93% mtDNA depletion in muscle', |
|
'respiratory chain complex deficiency in muscle: Complex I'], |
|
2: ['gender: F', 'gender: M'], |
|
3: ['age (years): 0.76', 'age (years): 20', 'age (years): 16', 'age (years): 1', |
|
'age (years): 0.75', 'age (years): 3', 'age (years): 0.2', 'age (years): 0.9', |
|
'age (years): 2', 'age (years): 6', 'age (years): 10', 'age (years): 4', |
|
'age (years): 0.3', 'age (years): 8', 'age (years): 72', 'age (years): 54', |
|
'age (years): 23', 'age (years): 60', 'age (years): 67', 'age (years): 59', |
|
'age (years): 11', 'age (years): 46', 'age (years): 42', 'age (years): not obtained', |
|
'age (years): 5', 'age (years): 30', 'age (years): 36', 'age (years): 39', |
|
'age (years): 0.1', 'age (years): 0.7'], |
|
4: ['informatic analysis group: Control Group', 'informatic analysis group: Mito Disease Group', |
|
'informatic analysis group: Excluded - poor quality', 'informatic analysis group: Excluded - sample outlier'] |
|
} |
|
|
|
clinical_data = pd.DataFrame() |
|
for key, values in raw_clinical_data.items(): |
|
clinical_data[key] = pd.Series(values) |
|
|
|
|
|
|
|
is_gene_available = True |
|
|
|
|
|
def convert_trait(value: str) -> int: |
|
|
|
value = value.split(':')[1].strip().lower() |
|
|
|
if 'mito disease group' in value: |
|
return 1 |
|
elif 'control group' in value: |
|
return 0 |
|
|
|
return None |
|
|
|
def convert_age(value: str) -> float: |
|
|
|
value = value.split(':')[1].strip() |
|
try: |
|
|
|
return float(value) |
|
except: |
|
return None |
|
|
|
def convert_gender(value: str) -> int: |
|
|
|
value = value.split(':')[1].strip().upper() |
|
|
|
if value == 'F': |
|
return 0 |
|
elif value == 'M': |
|
return 1 |
|
return None |
|
|
|
|
|
|
|
trait_row = 4 |
|
|
|
age_row = 3 |
|
|
|
gender_row = 2 |
|
|
|
|
|
is_trait_available = trait_row is not None |
|
validate_and_save_cohort_info(is_final=False, cohort=cohort, info_path=json_path, |
|
is_gene_available=is_gene_available, |
|
is_trait_available=is_trait_available) |
|
|
|
|
|
if trait_row is not None: |
|
clinical_features = geo_select_clinical_features( |
|
clinical_df=clinical_data, |
|
trait=trait, |
|
trait_row=trait_row, |
|
convert_trait=convert_trait, |
|
age_row=age_row, |
|
convert_age=convert_age, |
|
gender_row=gender_row, |
|
convert_gender=convert_gender |
|
) |
|
|
|
|
|
preview = preview_df(clinical_features) |
|
|
|
|
|
clinical_features.to_csv(out_clinical_data_file) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
genetic_data = get_genetic_data(matrix_file_path) |
|
|
|
|
|
print("Data structure and head:") |
|
print(genetic_data.head()) |
|
|
|
print("\nShape:", genetic_data.shape) |
|
|
|
print("\nFirst 20 row IDs (gene/probe identifiers):") |
|
print(list(genetic_data.index)[:20]) |
|
|
|
|
|
print("\nFirst 5 column names:") |
|
print(list(genetic_data.columns)[:5]) |
|
|
|
|
|
|
|
requires_gene_mapping = True |
|
|
|
gene_annotation = get_gene_annotation(soft_file_path) |
|
|
|
|
|
print("Column names:") |
|
print(gene_annotation.columns) |
|
|
|
print("\nPreview of gene annotation data:") |
|
print(preview_df(gene_annotation)) |
|
|
|
|
|
mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='Symbol') |
|
|
|
|
|
gene_data = apply_gene_mapping(genetic_data, mapping_df) |
|
|
|
|
|
print("\nFirst few rows of gene expression data after mapping:") |
|
print(gene_data.head()) |
|
print("\nShape after mapping:", gene_data.shape) |
|
|
|
selected_clinical_df = pd.read_csv(out_clinical_data_file, index_col=0) |
|
|
|
|
|
genetic_data = normalize_gene_symbols_in_index(gene_data) |
|
genetic_data.to_csv(out_gene_data_file) |
|
|
|
|
|
linked_data = geo_link_clinical_genetic_data(selected_clinical_df, genetic_data) |
|
|
|
|
|
linked_data = handle_missing_values(linked_data, trait) |
|
|
|
|
|
trait_biased, linked_data = judge_and_remove_biased_features(linked_data, trait) |
|
|
|
|
|
note = "Contains gene expression data with metabolic rate (inferred from multicentric occurrence-free survival days) measurements" |
|
is_usable = validate_and_save_cohort_info( |
|
is_final=True, |
|
cohort=cohort, |
|
info_path=json_path, |
|
is_gene_available=True, |
|
is_trait_available=True, |
|
is_biased=trait_biased, |
|
df=linked_data, |
|
note=note |
|
) |
|
|
|
|
|
if is_usable: |
|
os.makedirs(os.path.dirname(out_data_file), exist_ok=True) |
|
linked_data.to_csv(out_data_file) |