{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "8406ab8b", "metadata": { "execution": { "iopub.execute_input": "2025-03-25T06:23:08.133623Z", "iopub.status.busy": "2025-03-25T06:23:08.133401Z", "iopub.status.idle": "2025-03-25T06:23:08.298475Z", "shell.execute_reply": "2025-03-25T06:23:08.298142Z" } }, "outputs": [], "source": [ "import sys\n", "import os\n", "sys.path.append(os.path.abspath(os.path.join(os.getcwd(), '../..')))\n", "\n", "# Path Configuration\n", "from tools.preprocess import *\n", "\n", "# Processing context\n", "trait = \"Alcohol_Flush_Reaction\"\n", "cohort = \"GSE133228\"\n", "\n", "# Input paths\n", "in_trait_dir = \"../../input/GEO/Alcohol_Flush_Reaction\"\n", "in_cohort_dir = \"../../input/GEO/Alcohol_Flush_Reaction/GSE133228\"\n", "\n", "# Output paths\n", "out_data_file = \"../../output/preprocess/Alcohol_Flush_Reaction/GSE133228.csv\"\n", "out_gene_data_file = \"../../output/preprocess/Alcohol_Flush_Reaction/gene_data/GSE133228.csv\"\n", "out_clinical_data_file = \"../../output/preprocess/Alcohol_Flush_Reaction/clinical_data/GSE133228.csv\"\n", "json_path = \"../../output/preprocess/Alcohol_Flush_Reaction/cohort_info.json\"\n" ] }, { "cell_type": "markdown", "id": "45ed907e", "metadata": {}, "source": [ "### Step 1: Initial Data Loading" ] }, { "cell_type": "code", "execution_count": null, "id": "6ac8872c", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "0611e5f7", "metadata": {}, "source": [ "### Step 2: Dataset Analysis and Clinical Feature Extraction" ] }, { "cell_type": "code", "execution_count": null, "id": "06073eed", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "51e205a2", "metadata": {}, "source": [ "### Step 3: Gene Data Extraction" ] }, { "cell_type": "code", "execution_count": null, "id": "fd8ab6f4", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "5f56cbde", "metadata": {}, "source": [ "### Step 4: Gene Identifier Review" ] }, { "cell_type": "code", "execution_count": null, "id": "adfe7dd1", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "aa997aa2", "metadata": {}, "source": [ "### Step 5: Gene Annotation" ] }, { "cell_type": "code", "execution_count": null, "id": "7e69c327", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "f365bfe1", "metadata": {}, "source": [ "### Step 6: Gene Identifier Mapping" ] }, { "cell_type": "code", "execution_count": null, "id": "3a95b5a6", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.16" } }, "nbformat": 4, "nbformat_minor": 5 }