Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def sm_noalex(fname): | |
print(" - Loading '%s' ... " % fname) | |
ph_times_t, det_t, labels = loader.load_sm(fname, return_labels=True) | |
print(" [DONE]\n") | |
a_em = (det_t == 1) | |
dx = Data(fname=fname, clk_p=12.5e-9, nch=1, | |
ALEX=False, lifetime=False, alternated=False, | |
meas_type='smFRET', | |
ph_times_m=[ph_times_t], det_donor_accept=(0, 1), A_em=[a_em], |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def run_notebook(notebook_name): | |
"""Runs the notebook `notebook_name` (file name with no extension). | |
This function executes notebook with name `notebook_name` (no extension) | |
and saves the fully executed notebook in a new file appending "-out" | |
to the original file name. | |
It also displays links to the original and executed notebooks. | |
""" | |
nb_name_full = notebook_name + '.ipynb' |
NewerOlder