Skip to content

Commit

Permalink
Merge branch main
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengpuas47 committed Jul 26, 2024
2 parents 6447923 + b78efc7 commit 40abb02
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ChromAn
Submodule ChromAn updated 57 files
+ .DS_Store
+7 −3 examples/Example_preprocess.sh
+9 −1 src/analysis/__init__.py
+22 −9 src/analysis/analysis_input.py
+85 −0 src/analysis/check_organization.py
+95 −0 src/analysis/find_reference_spots.py
+35 −0 src/analysis/matching_spots.py
+0 −70 src/analysis/parse_organization.py
+136 −151 src/chroman.py
+2 −2 src/correction_tools/filter.py
+0 −0 src/data_tools/__init__.py
+103 −0 src/data_tools/check_archives.py
+21 −0 src/data_tools/check_archives.slurm
+261 −0 src/data_tools/extract_fov_files.py
+20 −0 src/data_tools/print_checks.slurm
+23 −0 src/data_tools/run_archiving.slurm
+20 −2 src/default_parameters.py
+90 −40 src/file_io/data_organization.py
+27 −4 src/file_io/dax_process.py
+18 −0 src/library_tools/select_gene.py
+234 −0 src/scripts/0.01x_cell_segment.sh
+234 −0 src/scripts/0.01x_image_preprocess.sh
+165 −0 src/scripts/0.1x_image_preprocess.sh
+234 −0 src/scripts/1x_image_preprocess.sh
+78 −0 src/scripts/20230829-zombie-4T1v21x_cell_segment.sh
+78 −0 src/scripts/20230829-zombie-4T1v21x_image_preprocess.sh
+80 −0 src/scripts/20230901-zombie_4T1preEditTop8_low_cell_segment.sh
+79 −0 src/scripts/20230901-zombie_4T1preEditTop8_low_image_preprocess.sh
+381 −0 src/scripts/20231120-4T1earlyTumor_F170-4_ingelT7_image_preprocess.sh
+469 −0 src/scripts/20231121-4T1F170_1107-4_ingelT7_image_preprocess.sh
+336 −0 src/scripts/37c_1day_cell_segment.sh
+335 −0 src/scripts/37c_1day_image_preprocess.sh
+242 −0 src/scripts/37c_2day_cell_segment.sh
+242 −0 src/scripts/37c_2day_image_preprocess.sh
+261 −0 src/scripts/47c_1day_cell_segment.sh
+260 −0 src/scripts/47c_1day_image_preprocess.sh
+261 −0 src/scripts/47c_2day_cell_segment.sh
+260 −0 src/scripts/47c_2day_image_preprocess.sh
+142 −0 src/scripts/Glyoxal_GuHCl_PuWash_cell_segment.sh
+141 −0 src/scripts/Glyoxal_GuHCl_PuWash_image_preprocess.sh
+130 −0 src/scripts/Glyoxal_GuHCl_WillWash_cell_segment.sh
+129 −0 src/scripts/Glyoxal_GuHCl_WillWash_image_preprocess.sh
+91 −0 src/scripts/Glyoxal_cell_segment.sh
+91 −0 src/scripts/Glyoxal_image_preprocess.sh
+142 −0 src/scripts/MEAA_GuHCl_PuWash_cell_segment.sh
+141 −0 src/scripts/MEAA_GuHCl_PuWash_image_preprocess.sh
+118 −0 src/scripts/MEAA_GuHCl_WillWash_cell_segment.sh
+117 −0 src/scripts/MEAA_GuHCl_WillWash_image_preprocess.sh
+88 −0 src/scripts/MeAA_PFA_cell_segment.sh
+88 −0 src/scripts/MeAA_PFA_image_preprocess.sh
+64 −0 src/scripts/MeAA_cell_segment.sh
+64 −0 src/scripts/MeAA_image_preprocess.sh
+75 −0 src/scripts/PFA_cell_segment.sh
+75 −0 src/scripts/PFA_image_preprocess.sh
+4 −0 src/slurm_params.json
+71 −1 src/spot_tools/match_spots.py
+8 −0 src/spot_tools/spot_fitting.py
2 changes: 1 addition & 1 deletion MERlin
9 changes: 3 additions & 6 deletions storm_control/fluidics/kilroy.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/python
# ----------------------------------------------------------------------------------------
# A master control class to implemented a series of automated flow protocols
# using a daisy chained valve system (and eventually syringe pumps)
# using a daisy chained valve system and peristaltic or syringe pumps
# ----------------------------------------------------------------------------------------
# Jeff Moffitt
# 12/28/13
# jeffmoffitt@gmail.com
# jeffrey.moffitt@childrens.harvard.edu
# ----------------------------------------------------------------------------------------

# ----------------------------------------------------------------------------------------
Expand All @@ -14,7 +14,6 @@
import sys
import os
import time
import sys
sys.path.append(r"..\..")
from PyQt5 import QtCore, QtGui, QtWidgets
from storm_control.fluidics.valves.valveChain import ValveChain
Expand All @@ -32,7 +31,6 @@ def __init__(self, parameters):

# Parse parameters into internal attributes
self.verbose = parameters.get("verbose")
self.valve_com_port = parameters.get("valves_com_port")
self.tcp_port = parameters.get("tcp_port")
self.pump_com_port = parameters.get("pump_com_port")
self.pump_ID = parameters.get("pump_ID")
Expand Down Expand Up @@ -85,8 +83,7 @@ def __init__(self, parameters):
# Create KilroyProtocols instance and connect signals
self.kilroyProtocols = KilroyProtocols(protocol_xml_path = self.protocols_file,
command_xml_path = self.commands_file,
verbose = self.verbose,
pumpType = self.pump_type)
verbose = self.verbose, )

self.kilroyProtocols.command_ready_signal.connect(self.sendCommand)
self.kilroyProtocols.status_change_signal.connect(self.handleProtocolStatusChange)
Expand Down
3 changes: 1 addition & 2 deletions storm_control/fluidics/kilroyProtocols.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ class KilroyProtocols(QtWidgets.QMainWindow):
def __init__(self,
protocol_xml_path = "default_config.xml",
command_xml_path = "default_config.xml",
verbose = False,
pumpType='peristaltic'):
verbose = False):
super(KilroyProtocols, self).__init__()

# Initialize internal attributes
Expand Down

0 comments on commit 40abb02

Please sign in to comment.