示例#1
0
def do_mle():
    """ Do MLE refinement only.

    :returns: int -- the return code.
    :raises: None
    """
    phasing = CXPhasing()
    phasing.maximum_likelihood_refinement()
    return 0
示例#2
0
def do_mle():
    """ Do MLE refinement only.

    :returns: int -- the return code.
    :raises: None
    """
    phasing = CXPhasing()
    phasing.maximum_likelihood_refinement()
    return 0
示例#3
0
def start_phasing():
    """ Begin the phasing process.

    :returns: int -- the return code.
    :raises: None

    """
    phasing = CXPhasing()
    phasing.setup()
    phasing.preprocessing()
    phasing.phase_retrieval()
    phasing.postprocessing()

    return 0
示例#4
0
def start_phasing():
    """ Begin the phasing process.

    :returns: int -- the return code.
    :raises: None

    """
    phasing = CXPhasing()
    phasing.setup()
    phasing.preprocessing()
    phasing.phase_retrieval()
    phasing.postprocessing()

    return 0