We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f535aa commit 8b4a9b4Copy full SHA for 8b4a9b4
alldata/bblab_site/tools/isoforms_plot/run_isoforms.py
@@ -3,7 +3,6 @@
3
4
sys.path.append(os.environ.get("BBLAB_UTIL_PATH", "fail"))
5
6
-import io
7
import traceback
8
from pathlib import Path
9
from typing import TextIO
@@ -45,14 +44,11 @@ def run(csv_file: TextIO) -> dict:
45
44
import isoforms_plot.parser as parser
46
import isoforms_plot.compiler as compiler
47
import isoforms_plot.plotter as plotter
+ import isoforms_plot.lexer as lexer
48
49
- # Parse
50
- parsed = parser.parse(csv_file)
51
-
52
- # Compile
+ lexed = lexer.lex(csv_file)
+ parsed = parser.parse(lexed)
53
compiled = compiler.compile(parsed)
54
55
- # Plot
56
drawing = plotter.plot(
57
compiled.transcripts,
58
compiled.groups,
0 commit comments