コード例 #1
0
ファイル: phasing.py プロジェクト: buzmakov/cxphasing
def do_mle():
    """ Do MLE refinement only.

    :returns: int -- the return code.
    :raises: None
    """
    phasing = CXPhasing()
    phasing.maximum_likelihood_refinement()
    return 0
コード例 #2
0
ファイル: phasing.py プロジェクト: necroen/cxphasing
def do_mle():
    """ Do MLE refinement only.

    :returns: int -- the return code.
    :raises: None
    """
    phasing = CXPhasing()
    phasing.maximum_likelihood_refinement()
    return 0
コード例 #3
0
ファイル: phasing.py プロジェクト: necroen/cxphasing
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
ファイル: phasing.py プロジェクト: buzmakov/cxphasing
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