Ejemplo n.º 1
0
"""
Batch sCMOS analysis.

Hazen 02/14
"""

import sys

import storm_analysis.sa_utilities.batch_analysis as batch_analysis

if (len(sys.argv) != 4):
    print("usage <input directory> <output directory> <xml file>")
    exit()

batch_analysis.batchAnalysis(sys.path[0] + "/scmos_analysis.py",
                             sys.argv[1],
                             sys.argv[2],
                             sys.argv[3])

#
# The MIT License
#
# Copyright (c) 2014 Zhuang Lab, Harvard University
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
Ejemplo n.º 2
0
Batch 3D-DAOSTORM analysis.

Hazen 02/14
"""

import sys

import storm_analysis.sa_utilities.batch_analysis as batch_analysis

if (len(sys.argv) != 4):
    print("usage <input directory> <output directory> <xml file>")
    exit()

batch_analysis.batchAnalysis(sys.path[0] + "/mufit_analysis.py",
                             sys.argv[1],
                             sys.argv[2],
                             sys.argv[3])

#
# The MIT License
#
# Copyright (c) 2014 Zhuang Lab, Harvard University
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
Ejemplo n.º 3
0
"""
Batch Spliner analysis.

Hazen 02/14
"""

import sys

import storm_analysis.sa_utilities.batch_analysis as batch_analysis

if (len(sys.argv) != 4):
    print("usage <input directory> <output directory> <xml file>")
    exit()

batch_analysis.batchAnalysis(sys.path[0] + "/spline_analysis.py",
                             sys.argv[1],
                             sys.argv[2],
                             sys.argv[3])

#
# The MIT License
#
# Copyright (c) 2014 Zhuang Lab, Harvard University
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
Ejemplo n.º 4
0
"""

Batch 3D-DAOSTORM analysis.

Hazen 02/14
"""

import sys

import storm_analysis.sa_utilities.batch_analysis as batch_analysis

if (len(sys.argv) != 4):
    print("usage <input directory> <output directory> <xml file>")
    exit()

batch_analysis.batchAnalysis(sys.path[0] + "/mufit_analysis.py", sys.argv[1],
                             sys.argv[2], sys.argv[3])

#
# The MIT License
#
# Copyright (c) 2014 Zhuang Lab, Harvard University
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.