Coverage for tests/test_util.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# -*- coding: utf-8 -*-
2"""
3Created on Thu Aug 13 2020
5@author: Yoann Pradat
7 CentraleSupelec
8 MICS laboratory
9 9 rue Juliot Curie, Gif-Sur-Yvette, 91190 France
11Test functions in util.py module.
12"""
14import os
15from ..util import load_vcf
17def test_load_vcf():
18 print(os.getcwd())
19 folder = "./examples/data/TCGA_GA/"
20 file = "TCGA-A1-A0SB_db9d40fb-bfce-4c3b-a6c2-41c5c88982f1_a3254f8e-3bbd-42fc-abea-a5f25b7648b3.indel.capture.tcga.vcf"
22 df_vcf = load_vcf(
23 filepath = os.path.join(folder, file)
24 )