Skip to content

Commit 3968635

Browse files
committed
bug fix
1 parent 66df06b commit 3968635

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

app.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@
485485
dbc.Col(
486486
dbc.InputGroup(
487487
[
488-
dbc.InputGroupText("XIC Tolerance (Da)"),
488+
dbc.InputGroupText("Tolerance (Da)"),
489489
dbc.Input(id='xic_tolerance', placeholder="Enter Da Tolerance", value="0.5"),
490490
],
491491
className="mb-3",
@@ -494,7 +494,7 @@
494494
dbc.Col(
495495
dbc.InputGroup(
496496
[
497-
dbc.InputGroupText("XIC Tolerance (ppm)"),
497+
dbc.InputGroupText("Tolerance (ppm)"),
498498
dbc.Input(id='xic_ppm_tolerance', placeholder="Enter Da Tolerance", value="10"),
499499
],
500500
className="mb-3",
@@ -503,7 +503,7 @@
503503
dbc.Col(
504504
dbc.Row(
505505
[
506-
dbc.Label("XIC Tolerance Unit", width=4.8, style={"width":"150px"}),
506+
dbc.Label("Tolerance Unit", width=4.8, style={"width":"150px"}),
507507
dcc.Dropdown(
508508
id='xic_tolerance_unit',
509509
options=[
@@ -525,7 +525,7 @@
525525
dbc.Col(
526526
dbc.InputGroup(
527527
[
528-
dbc.InputGroupText("XIC Retention Time View/Integration Limits"),
528+
dbc.InputGroupText("Retention Time View/Integration Limits"),
529529
dbc.Input(id='xic_rt_window', placeholder="Enter RT Window (e.g. 1-2 or 1.5)", value=""),
530530
],
531531
className="mb-3",
@@ -536,7 +536,7 @@
536536
dbc.Col(
537537
dbc.Row(
538538
[
539-
dbc.Label("XIC Integration", width=4.8, style={"width":"120px"}),
539+
dbc.Label("Integration", width=4.8, style={"width":"120px"}),
540540
dcc.Dropdown(
541541
id='xic_integration_type',
542542
options=[
@@ -558,7 +558,7 @@
558558
dbc.Col(
559559
dbc.Row(
560560
[
561-
dbc.Label("XIC Normalization", html_for="xic_norm", width=4.8, style={"width":"140px"}),
561+
dbc.Label("Normalization", html_for="xic_norm", width=4.8, style={"width":"140px"}),
562562
dbc.Col(
563563
daq.ToggleSwitch(
564564
id='xic_norm',
@@ -577,7 +577,7 @@
577577
dbc.Col(
578578
dbc.Row(
579579
[
580-
dbc.Label("XIC Grouping", width=4.8, style={"width":"120px"}),
580+
dbc.Label("Grouping", width=4.8, style={"width":"120px"}),
581581
dcc.Dropdown(
582582
id='xic_file_grouping',
583583
options=[
@@ -613,7 +613,7 @@
613613
dbc.Col(
614614
dbc.Row(
615615
[
616-
dbc.Label("TIC option", width=4.8, style={"width":"100px"}),
616+
dbc.Label("Option", width=4.8, style={"width":"100px"}),
617617
dcc.Dropdown(
618618
id='tic_option',
619619
options=[
@@ -635,7 +635,7 @@
635635
dbc.Col(
636636
dbc.Row(
637637
[
638-
dbc.Label("Show Multiple TICs", width=4.8, style={"width":"150px"}),
638+
dbc.Label("Show Multiple", width=4.8, style={"width":"150px"}),
639639
dbc.Col(
640640
daq.ToggleSwitch(
641641
id='show_multiple_tic',

download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def _usi_to_ccms_path(usi):
221221
msv_url = msv_url.replace("ftp://massive.ucsd.edu/", "")
222222
msv_url = msv_url.replace("https://massive.ucsd.edu/ProteoSAFe/DownloadResultFile?forceDownload=true&file=", "")
223223

224-
return "f.{}".format(st_url)
224+
return "f.{}".format(msv_url)
225225

226226
if "GNPS" in usi_splits[1]:
227227
if "TASK-" in usi_splits[2]:

0 commit comments

Comments
 (0)