This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import click | |
import pandas as pd | |
def read_gdc_sheet(filepath: str): | |
gdc_sheet = pd.read_csv(filepath, sep='\t') | |
return gdc_sheet | |
def read_clinical_sheet(filepath: str): | |
clinical_sheet = pd.read_csv(filepath, sep='\t') | |
return clinical_sheet |