Skip to content
Snippets Groups Projects
Commit 5ab12718 authored by Samuel Mondal's avatar Samuel Mondal
Browse files

Update cli (still not complete)

parent 2e508d8a
Branches
No related tags found
1 merge request!36Update cli (still not complete)
...@@ -2,7 +2,7 @@ import argparse ...@@ -2,7 +2,7 @@ import argparse
import logging import logging
from pre_bedtools import exon_extraction_from_gtf from pre_bedtools import exon_extraction_from_gtf
from exon_concatenation import exon_concatenation from exon_concatenation import exon_concatenation
from polyA import PolyA_generator from polyA import polyA_addition_to_fasta_list
from list_to_file import list_to_file from list_to_file import list_to_file
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
...@@ -20,9 +20,9 @@ args = parser.parse_args() ...@@ -20,9 +20,9 @@ args = parser.parse_args()
def main(): def main():
LOG.info("sequence_extractor begins") LOG.info("sequence_extractor begins")
exon_extraction_from_gtf() exon_extraction_from_gtf()
exon_concatenation() fasta_list = exon_concatenation(args.)
PolyA_generator() final_list = polyA_addition_to_fasta_list(fasta_list)
list_to_file() list_to_file(final_list,args.output_file_name)
LOG.info("sequence_extractor ends") LOG.info("sequence_extractor ends")
if ___name__ == 'main': if ___name__ == 'main':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment