[pandas, matplotlib] bed 파일을 읽어 들여서 모두 한번에 line plot 하기
코드 import pandas as pd import matplotlib.pyplot as plt import glob def gen_readcnt_df(file_list): """ file_list: bed 파일에 대한 리스트 bed file 형식: chrname시작끝영역내read의 갯수 특별히 bed 에는 header 행은 없는 상태임 """ res = None for bed in file_list: colname = bed.split("/")[-1].split(".")[0] aa = pd.read_csv(bed, sep="\t", header=None, index_col=(0,1,2), names=("chrn","init","end",colname)) if res is None: res = aa e..
2021. 3. 22.