Notebook
Notebook
A write-only file-synchronized class to keep track of coppaFISH results.
The Notebook
object stores all of the outputs of the script. Almost all
information saved in the Notebook
is encapsulated within "pages"
, from the
NotebookPage
object. To add a NotebookPage
object to a Notebook
, use the
"add_page"
method.
In addition to saving pages, it also saves the contents of the
config file, and the time at which the notebook and each page was created.
To create a Notebook
, pass it the path to the file where the Notebook
is to
be stored (notebook_file
), and optionally, the path to the configuration file
(config_file
). If notebook_file
already exists, the notebook located
at this path will be loaded. If not, a new file will be created as soon as
the first data is written to the Notebook
.
Example
nb = Notebook("nbfile.npz", "config_file.ini")
nbp = NotebookPage("pagename")
nbp.var = 1
nb.add_page(nbp) or nb += nbp or nb.pagename = nbp
assert nb.pagename.var == 1
nb = Notebook("nbfile.npz")
nbp = NotebookPage("pagename")
nbp.var = 1
nb.add_page(nbp) or nb += nbp or nb.pagename = nbp
assert nb.pagename.var == 1
Because it is automatically saved to the disk, you can close Python, reopen
it, and do the following (Once config_file
, added to notebook there is no need to load it again unless it has
been changed):
nb2 = Notebook("nbfile.npz")
assert nb2.pagename.var == 1
If you create a notebook without specifying notebook_file
, i.e.
nb = Notebook(config_file="config_file.ini")
, the notebook_file
will be set to:
notebook_file = config['file_names']['output_dir'] + config['file_names']['notebook_name'])
On using config_file
When running the coppafish pipeline, the Notebook
requires a config_file
to access information required for
the different stages of the pipeline through nb.get_config()
.
But if using the Notebook
to store information not in coppafish pipeline, it is not needed.
Source code in coppafish/setup/notebook.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 |
|
add_no_save_pages()
This adds the page page_name
listed in nb._no_save_pages
to the notebook if
the notebook already contains the pages listed in nb._no_save_pages['page_name']['load_func_req']
by running the function nb._no_save_pages['page_name']['load_func'](nb, 'page_name')
.
At the moment, this is only used to add the file_names
page to the notebook as soon as the basic_info
page
has been added.
Source code in coppafish/setup/notebook.py
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 |
|
add_page(page)
Insert the page page
into the Notebook
.
This function automatically triggers a save.
Source code in coppafish/setup/notebook.py
453 454 455 456 457 458 459 460 |
|
change_page_name(old_name, new_name)
This changes the name of the page old_name
to new_name
. It will trigger two saves,
one after changing the new and one after changing the time the page was added to be the time
the initial page was added.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
old_name |
str
|
required | |
new_name |
str
|
required |
Source code in coppafish/setup/notebook.py
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 |
|
compare_config(config_2)
Compares whether config_2
is equal to the config file saved in the notebook.
Only sections not in _no_compare_config_sections
and with a corresponding page saved to the notebook
will be checked.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config_2 |
dict
|
Dictionary with keys corresponding to sections where a section
is also a dictionary containing parameters.
E.g. |
required |
Returns:
Type | Description |
---|---|
bool
|
|
Source code in coppafish/setup/notebook.py
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
|
describe(key=None)
describe(var)
will print comments for variables called var
in each NotebookPage
.
Source code in coppafish/setup/notebook.py
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
from_file(fn)
Read a Notebook
from a file
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fn |
str
|
Filename of the saved |
required |
Returns:
Type | Description |
---|---|
List
|
A list of |
dict
|
A dictionary of timestamps, of identical length to the list of |
float
|
A timestamp for the time the |
str
|
A string of the config file |
Source code in coppafish/setup/notebook.py
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 |
|
get_config()
Returns config as dictionary.
Source code in coppafish/setup/notebook.py
298 299 300 301 302 303 304 305 |
|
has_page(page_name)
A check to see if notebook includes a page called page_name. If page_name is a list, a boolean list of equal size will be returned indicating whether each page is present.
Source code in coppafish/setup/notebook.py
462 463 464 465 466 467 468 469 470 471 472 |
|
save(file=None)
Saves Notebook as a npz file at the path indicated by file
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file |
Optional[str]
|
Where to save Notebook. If |
None
|
Source code in coppafish/setup/notebook.py
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 |
|
Notebook Page
A page, to be added to a Notebook
object
Expected usage is for a NotebookPage
to be created at the beginning of a
large step in the analysis pipeline. The name of the page should reflect
its function, and it will be used as the indexing key when it is added to a
Notebook. The NotebookPage
should be created at the beginning of the step
in the pipeline, because then the timestamp will be more meaningful. As
results are computed, they should be added. This will provide a timestamp
for each of the results as well. Then, at the end, the pipeline step should return
a NotebookPage
, which can then be added to the Notebook
.
Example
nbp = NotebookPage("extract_and_filter")
nbp.scale_factor = 10
...
return nbp
Source code in coppafish/setup/notebook.py
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 |
|
describe(key=None)
Prints a description of the variable indicated by key
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
Optional[str]
|
name of variable to describe that must be in |
None
|
Source code in coppafish/setup/notebook.py
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 |
|
from_dict(d)
Adds all string keys of dictionary d to page. Keys whose value is None will be ignored.
Source code in coppafish/setup/notebook.py
765 766 767 768 769 770 771 772 773 |
|
from_serial_dict(d)
classmethod
Convert from a dictionary to a NotebookPage
object
In general, this function shouldn't need to be called other than within
a Notebook
object.
Source code in coppafish/setup/notebook.py
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 |
|
has_item(key)
Check to see whether page has attribute key
Source code in coppafish/setup/notebook.py
761 762 763 |
|
to_serial_dict()
Convert to a dictionary which can be written to a file.
In general, this function shouldn't need to be called other than within
a Notebook
object.
Source code in coppafish/setup/notebook.py
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 |
|