| | |
| | from tools.preprocess import * |
| |
|
| | |
| | trait = "Depression" |
| |
|
| | |
| | tcga_root_dir = "../DATA/TCGA" |
| |
|
| | |
| | out_data_file = "./output/z2/preprocess/Depression/TCGA.csv" |
| | out_gene_data_file = "./output/z2/preprocess/Depression/gene_data/TCGA.csv" |
| | out_clinical_data_file = "./output/z2/preprocess/Depression/clinical_data/TCGA.csv" |
| | json_path = "./output/z2/preprocess/Depression/cohort_info.json" |
| |
|
| |
|
| | |
| | import os |
| | import pandas as pd |
| |
|
| | |
| | keywords = [ |
| | 'depress', 'mdd', 'major_depress', 'depressive', 'mood', |
| | 'psychi', 'mental', 'affective', 'sadness' |
| | ] |
| |
|
| | subdirs = [d for d in os.listdir(tcga_root_dir) if os.path.isdir(os.path.join(tcga_root_dir, d))] |
| | matches = [] |
| | for d in subdirs: |
| | name_l = d.lower() |
| | if any(k in name_l for k in keywords): |
| | matches.append(d) |
| |
|
| | selected_tcga_dir = None |
| | if len(matches) > 0: |
| | |
| | selected_tcga_dir = max(matches, key=len) |
| | else: |
| | |
| | print("No suitable TCGA cohort found for trait 'Depression'. Skipping preprocessing for this trait.") |
| | _ = validate_and_save_cohort_info( |
| | is_final=False, |
| | cohort="TCGA", |
| | info_path=json_path, |
| | is_gene_available=False, |
| | is_trait_available=False |
| | ) |
| |
|
| | |
| | clinical_df, genetic_df = None, None |
| | if selected_tcga_dir is not None: |
| | cohort_dir = os.path.join(tcga_root_dir, selected_tcga_dir) |
| | clinical_path, genetic_path = tcga_get_relevant_filepaths(cohort_dir) |
| |
|
| | clinical_df = pd.read_csv(clinical_path, sep="\t", index_col=0, low_memory=False) |
| | genetic_df = pd.read_csv(genetic_path, sep="\t", index_col=0, low_memory=False) |
| |
|
| | print(list(clinical_df.columns)) |