Remove find_html_files function
This commit is contained in:
parent
e826d6f92b
commit
fa23b1a950
|
@ -6,9 +6,6 @@ from re import sub
|
|||
from pandas import DataFrame, read_html, Series
|
||||
|
||||
|
||||
def find_html_files(path) -> List:
|
||||
file_list = glob(path + "/*fastqc.html")
|
||||
return file_list
|
||||
|
||||
|
||||
def extract_adapters(files) -> Tuple[Series, List]:
|
||||
|
@ -51,7 +48,7 @@ def parse_arguments():
|
|||
|
||||
def main():
|
||||
args = parse_arguments()
|
||||
file_list = find_html_files(args.input)
|
||||
file_list = glob(args.input + "/*fastqc.html")
|
||||
adapters, stats = extract_adapters(file_list)
|
||||
save_to_file(args.output, adapters)
|
||||
print(
|
||||
|
|
Loading…
Reference in New Issue