Skip to content

Commit d84b504

Browse files
committed
add tic chromatogram
1 parent d1ab85d commit d84b504

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

content/FLASHDeconv/FLASHDeconvLayoutManager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
'Raw spectrum (Scan table needed)',
1717
'Mass table (Scan table needed)',
1818
'3D S/N plot (Mass table needed)',
19-
'Score Distribution Plot'
20-
'TIC Chromatogram'
19+
'Score Distribution Plot',
20+
'TIC Chromatogram',
2121
# "Sequence view" and "Internal fragment map" is added when "input_sequence" is submitted
2222
]
2323

src/parse/deconv.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,11 @@ def parseDeconv(
9090
pl.col('intensity').sum().alias('tic'),
9191
])
9292
)
93+
tic_data = tic_data.sort("scan_idx", descending=False)
9394
file_manager.store_data(dataset_id, 'tic', tic_data)
9495

9596

97+
9698

9799
logger.log("20.0 %", level=2)
98100

src/render/components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Create a _RELEASE constant. We'll set this to False while we're developing
88
# the component, and True when we're ready to package and distribute it.
9-
_RELEASE = True
9+
_RELEASE = False
1010

1111

1212
_component_func = None

0 commit comments

Comments
 (0)