Source code for ngsqc.fastqc.FastQC

"""This is the beginning of Fastq
"""
import os
import fast_qc 
import fastp 

[docs]class FastQC: """ init the FastQC class Args: fq (str) : this is the input fastq file prefix (str) : the output prefix """ def __init__(self,fqs,prefix): self.fqs = fqs self.prex = prefix
[docs] def byfastqc(self): fast_qc.qc(self.fqs,self.prex)
[docs] def byfastp(self): """the docstring is cool """ fastp.qc(self.fqs,self.prex)