Package pypiper Documentation
Package Overview
The pypiper package provides a framework for building robust, restartable bioinformatics pipelines. It handles common pipeline tasks like checkpointing, logging, and resource monitoring.
Key Features
- Automatic Checkpointing: Resume pipelines from where they left off
- Resource Monitoring: Track memory and CPU usage
- Result Reporting: Integrate with pipestat for standardized results
- Container Support: Run commands in Docker containers
- Pipeline Management: Built-in logging and status tracking
Installation
pip install pypiper
Quick Example
from pypiper import PipelineManager
# Initialize a pipeline
pm = PipelineManager(
name="my_pipeline",
outfolder="results/"
)
# Run a command
pm.run("echo 'Hello, world!'")
# Stop the pipeline
pm.stop_pipeline()
API Reference
PipelineManager Class
The main class for building and managing pipelines:
PipelineManager
PipelineManager(name, outfolder, version=None, args=None, multi=False, dirty=False, recover=False, new_start=False, force_follow=False, cores=1, mem='1000M', config_file=None, output_parent=None, overwrite_checkpoints=False, logger_kwargs=None, pipestat_record_identifier=None, pipestat_schema=None, pipestat_results_file=None, pipestat_config=None, pipestat_pipeline_type=None, pipestat_result_formatter=None, **kwargs)
Bases: object
Base class for instantiating a PipelineManager object, the main class of Pypiper.
:param str name: Choose a name for your pipeline; it's used to name the output files, flags, etc. :param str outfolder: Folder in which to store the results. :param argparse.Namespace args: Optional args object from ArgumentParser; Pypiper will simply record these arguments from your script :param bool multi: Enables running multiple pipelines in one script or for interactive use. It simply disables the tee of the output, so you won't get output logged to a file. :param bool dirty: Overrides the pipeline's clean_add() manual parameters, to never clean up intermediate files automatically. Useful for debugging; all cleanup files are added to manual cleanup script. :param bool recover: Specify recover mode, to overwrite lock files. If pypiper encounters a locked target, it will ignore the lock and recompute this step. Useful to restart a failed pipeline. :param bool new_start: start over and run every command even if output exists :param bool force_follow: Force run all follow functions even if the preceding command is not run. By default, following functions are only run if the preceding command is run. :param int cores: number of processors to use, default 1 :param str mem: amount of memory to use. Default units are megabytes unless specified using the suffix [K|M|G|T]." :param str config_file: path to pipeline configuration file, optional :param str output_parent: path to folder in which output folder will live :param bool overwrite_checkpoints: Whether to override the stage-skipping logic provided by the checkpointing system. This is useful if the calls to this manager's run() method will be coming from a class that implements pypiper.Pipeline, as such a class will handle checkpointing logic automatically, and will set this to True to protect from a case in which a restart begins upstream of a stage for which a checkpoint file already exists, but that depends on the upstream stage and thus should be rerun if it's "parent" is rerun. :param str pipestat_record_identifier: record_identifier to report results via pipestat :param str pipestat_schema: output schema used by pipestat to report results :param str pipestat_results_file: path to file backend for reporting results :param str pipestat_config_file: path to pipestat configuration file :param str pipestat_pipeline_type: Sample or Project level pipeline :param pipestat_result_formatter: function used to style reported results, defaults to result_formatter_markdown :raise TypeError: if start or stop point(s) are provided both directly and via args namespace, or if both stopping types (exclusive/prospective and inclusive/retrospective) are provided.
Source code in pypiper/manager.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 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 | |
halted
property
halted
Is the managed pipeline in a paused/halted state? :return bool: Whether the managed pipeline is in a paused/halted state.
pipestat
property
pipestat
pipestat.PipestatManager object to use for pipeline results reporting and status management
Depending on the object configuration it can report to a YAML-formatted file or PostgreSQL database. Please refer to pipestat documentation for more details: http://pipestat.databio.org/
:return pipestat.PipestatManager: object to use for results reporting
callprint
callprint(cmd, shell=None, lock_file=None, nofail=False, container=None)
Prints the command, and then executes it, then prints the memory use and return code of the command.
Uses python's subprocess.Popen() to execute the given command. The shell argument is simply passed along to Popen(). You should use shell=False (default) where possible, because this enables memory profiling. You should use shell=True if you require shell functions like redirects (>) or stars (*), but this will prevent the script from monitoring memory use. The pipes (|) will be used to split the command into subprocesses run within python, so the memory profiling is possible.
cmd can also be a series (a dict object) of multiple commands, which will be run in succession.
:param str | Iterable[str] cmd: Bash command(s) to be run. :param str lock_file: a lock file name :param bool nofail: Should the pipeline bail on a nonzero return from a process? Default: False Nofail can be used to implement non-essential parts of the pipeline; if these processes fail, they will not cause the pipeline to bail out. :param bool shell: if the command should be run it its own shell, default: None (will try to determine based on the command) :param container: Named Docker container in which to execute. :param container: str
Source code in pypiper/manager.py
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 | |
checkprint
checkprint(cmd, shell=None, nofail=False)
Just like callprint, but checks output -- so you can get a variable
in python corresponding to the return value of the command you call.
This is equivalent to running subprocess.check_output()
instead of subprocess.call().
:param str | Iterable[str] cmd: Bash command(s) to be run.
:param bool | str shell: If command requires should be run in its own shell. Optional.
Default: "guess" -- run() will try to guess if the command should be run in a
shell (based on the presence of a pipe (|) or redirect (>), To force a process to
run as a direct subprocess, set shell to False; to force a shell, set True.
:param bool nofail: Should the pipeline bail on a nonzero return from a process? Default: False
Nofail can be used to implement non-essential parts of the pipeline; if these processes fail,
they will not cause the pipeline to bail out.
:return str: text output by the executed subprocess (check_output)
Source code in pypiper/manager.py
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 | |
clean_add
clean_add(regex, conditional=False, manual=False)
Add files (or regexs) to a cleanup list, to delete when this pipeline completes successfully. When making a call with run that produces intermediate files that should be deleted after the pipeline completes, you flag these files for deletion with this command. Files added with clean_add will only be deleted upon success of the pipeline.
:param str regex: A unix-style regular expression that matches files to delete (can also be a file name). :param bool conditional: True means the files will only be deleted if no other pipelines are currently running; otherwise they are added to a manual cleanup script called {pipeline_name}_cleanup.sh :param bool manual: True means the files will just be added to a manual cleanup script.
Source code in pypiper/manager.py
2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 | |
complete
complete()
Stop a completely finished pipeline.
Source code in pypiper/manager.py
1962 1963 1964 | |
fail_pipeline
fail_pipeline(exc, dynamic_recover=False)
If the pipeline does not complete, this function will stop the pipeline gracefully. It sets the status flag to failed and skips the normal success completion procedure.
:param Exception exc: Exception to raise. :param bool dynamic_recover: Whether to recover e.g. for job termination.
Source code in pypiper/manager.py
1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 | |
get_elapsed_time
get_elapsed_time()
Parse the pipeline profile file, collect the unique and last duplicated runtimes and sum them up. In case the profile is not found, an estimate is calculated (which is correct only in case the pipeline was not rerun)
:return int: sum of runtimes in seconds
Source code in pypiper/manager.py
2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 | |
get_stat
get_stat(key)
Returns a stat that was previously reported. This is necessary for reporting new stats that are derived from two stats, one of which may have been reported by an earlier run. For example, if you first use report_result to report (number of trimmed reads), and then in a later stage want to report alignment rate, then this second stat (alignment rate) will require knowing the first stat (number of trimmed reads); however, that may not have been calculated in the current pipeline run, so we must retrieve it from the stats.yaml output file. This command will retrieve such previously reported stats if they were not already calculated in the current pipeline run. :param key: key of stat to retrieve
Source code in pypiper/manager.py
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 | |
halt
halt(checkpoint=None, finished=False, raise_error=True)
Stop the pipeline before completion point.
:param str checkpoint: Name of stage just reached or just completed. :param bool finished: Whether the indicated stage was just finished (True), or just reached (False) :param bool raise_error: Whether to raise an exception to truly halt execution.
Source code in pypiper/manager.py
2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 | |
make_sure_path_exists
staticmethod
make_sure_path_exists(path)
Creates all directories in a path if it does not exist.
:param str path: Path to create. :raises Exception: if the path creation attempt hits an error with a code indicating a cause other than pre-existence.
Source code in pypiper/manager.py
1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 | |
process_counter
process_counter()
Increments process counter with regard to the follow state: if currently executed command is a follow function of another one, the counter is not incremented.
:return str | int: current counter state, a number if the counter has beed incremented or a number of the previous process plus "f" otherwise
Source code in pypiper/manager.py
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 | |
report_object
report_object(key, filename, anchor_text=None, anchor_image=None, annotation=None, nolog=False, result_formatter=None, force_overwrite=True)
Writes a key:value pair to self.pipeline_stats_file. Note: this function will be deprecated. Using report_result is recommended.
:param str key: name (key) of the object :param str filename: relative path to the file (relative to parent output dir) :param str anchor_text: text used as the link anchor test or caption to refer to the object. If not provided, defaults to the key. :param str anchor_image: a path to an HTML-displayable image thumbnail (so, .png or .jpg, for example). If a path, the path should be relative to the parent output dir. :param str annotation: By default, the figures will be annotated with the pipeline name, so you can tell which pipeline records which figures. If you want, you can change this. :param bool nolog: Turn on this flag to NOT print this result in the logfile. Use sparingly in case you will be printing the result in a different format. :param str result_formatter: function for formatting via pipestat backend :param bool force_overwrite: overwrite results if they already exist? :return str reported_result: the reported result is returned as a list of formatted strings.
Source code in pypiper/manager.py
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 | |
report_result
report_result(key, value, nolog=False, result_formatter=None, force_overwrite=True)
Writes a key:value pair to self.pipeline_stats_file.
:param str key: name (key) of the stat :param dict value: value of the stat to report. :param bool nolog: Turn on this flag to NOT print this result in the logfile. Use sparingly in case you will be printing the result in a different format. :param str result_formatter: function for formatting via pipestat backend :param bool force_overwrite: overwrite results if they already exist? :return str reported_result: the reported result is returned as a list of formatted strings.
Source code in pypiper/manager.py
1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 | |
run
run(cmd, target=None, lock_name=None, shell=None, nofail=False, clean=False, follow=None, container=None, default_return_code=0)
The primary workhorse function of PipelineManager, this runs a command.
This is the command execution function, which enforces race-free file-locking, enables restartability, and multiple pipelines can produce/use the same files. The function will wait for the file lock if it exists, and not produce new output (by default) if the target output file already exists. If the output is to be created, it will first create a lock file to prevent other calls to run (for example, in parallel pipelines) from touching the file while it is being created. It also records the memory of the process and provides some logging output.
:param str | list[str] cmd: Shell command(s) to be run. :param str | Sequence[str] target: Output file(s) to produce, optional. If all target files exist, the command will not be run. If no target is given, a lock_name must be provided. :param str lock_name: Name of lock file. Optional. :param bool shell: If command requires should be run in its own shell. Optional. Default: None --will try to determine whether the command requires a shell. :param bool nofail: Whether the pipeline proceed past a nonzero return from a process, default False; nofail can be used to implement non-essential parts of the pipeline; if a 'nofail' command fails, the pipeline is free to continue execution. :param bool clean: True means the target file will be automatically added to an auto cleanup list. Optional. :param callable follow: Function to call after executing (each) command. :param str container: Name for Docker container in which to run commands. :param Any default_return_code: Return code to use, might be used to discriminate between runs that did not execute any commands and runs that did. :return int: Return code of process. If a list of commands is passed, this is the maximum of all return codes for all commands.
Source code in pypiper/manager.py
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 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 | |
start_pipeline
start_pipeline(args=None, multi=False)
Initialize setup. Do some setup, like tee output, print some diagnostics, create temp files. You provide only the output directory (used for pipeline stats, log, and status flag files).
Source code in pypiper/manager.py
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 621 622 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 | |
stop_pipeline
stop_pipeline(status=COMPLETE_FLAG)
Terminate the pipeline.
This is the "healthy" pipeline completion function. The normal pipeline completion function, to be run by the pipeline at the end of the script. It sets status flag to completed and records some time and memory statistics to the log file.
Source code in pypiper/manager.py
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 | |
time_elapsed
staticmethod
time_elapsed(time_since)
Returns the number of seconds that have elapsed since the time_since parameter.
:param float time_since: Time as a float given by time.time().
Source code in pypiper/manager.py
1521 1522 1523 1524 1525 1526 1527 1528 | |
timestamp
timestamp(message='', checkpoint=None, finished=False, raise_error=True)
Print message, time, and time elapsed, perhaps creating checkpoint.
This prints your given message, along with the current time, and time elapsed since the previous timestamp() call. If you specify a HEADING by beginning the message with "###", it surrounds the message with newlines for easier readability in the log file. If a checkpoint is designated, an empty file is created corresponding to the name given. Depending on how this manager's been configured, the value of the checkpoint, and whether this timestamp indicates initiation or completion of a group of pipeline steps, this call may stop the pipeline's execution.
:param str message: Message to timestamp. :param str checkpoint: Name of checkpoint; this tends to be something that reflects the processing logic about to be or having just been completed. Provision of an argument to this parameter means that a checkpoint file will be created, facilitating arbitrary starting and stopping point for the pipeline as desired. :param bool finished: Whether this call represents the completion of a conceptual unit of a pipeline's processing :param raise_error: Whether to raise exception if checkpoint or current state indicates that a halt should occur.
Source code in pypiper/manager.py
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 | |