NGSTk API Documentation
Overview
NGSTk (Next-Generation Sequencing Toolkit) is a toolkit class that provides helper functions for building command strings used in NGS pipelines. It can be configured with a YAML configuration file to specify custom tool paths, or it will use tools from the system PATH.
Key Features
- Command Building: Generate command strings for common NGS tools
- Configuration Management: Use custom tool paths via YAML config
- Tool Integration: Built-in support for common tools like samtools, bedtools, etc.
- Pipeline Integration: Works seamlessly with PipelineManager
Installation
NGSTk is included with pypiper:
pip install pypiper
Quick Example
from pypiper.ngstk import NGSTk
# Initialize NGSTk
tk = NGSTk()
# Generate a command
cmd = tk.samtools_index("sample.bam")
# Returns: "samtools index sample.bam"
API Reference
NGSTk Class
NGSTk
NGSTk(config_file=None, pm=None)
Build shell command strings for common NGS processing operations.
Example
tk = NGSTk() tk.samtools_index("sample.bam") # => "samtools index sample.bam"
tk = NGSTk("pipeline_config.yaml") tk.samtools_index("sample.bam") # uses configured samtools path
Tool paths come from the config's "tools" section; unconfigured tools default to their name (assuming they're on $PATH).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file
|
str | None
|
Path to pipeline YAML config file. |
None
|
pm
|
Any
|
PipelineManager to associate with this toolkit. |
None
|
Source code in pypiper/ngstk.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | |
ziptool
property
ziptool
Compression command: 'pigz' if available with multiple cores, else 'gzip'.
bam2fastq
bam2fastq(input_bam, output_fastq, output_fastq2=None, unpaired_fastq=None)
Build command to convert BAM to FASTQ via Picard SamToFastq.
Source code in pypiper/ngstk.py
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
bam_conversions
bam_conversions(bam_file, depth=True)
Build command to sort and index a BAM file (optionally with depth).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bam_file
|
str
|
Path to BAM file. |
required |
depth
|
bool
|
Also calculate per-position coverage. |
True
|
Source code in pypiper/ngstk.py
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 | |
bam_to_bigwig
bam_to_bigwig(input_bam, output_bigwig, genome_sizes, genome, tagmented=False, normalize=False, norm_factor=1000)
Convert a BAM file to a bigWig file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_bam
|
str
|
path to BAM file to convert |
required |
output_bigwig
|
str
|
path to which to write file in bigwig format |
required |
genome_sizes
|
str
|
path to file with chromosome size information |
required |
genome
|
str
|
name of genomic assembly |
required |
tagmented
|
bool
|
flag related to read-generating protocol |
False
|
normalize
|
bool
|
whether to normalize coverage |
False
|
norm_factor
|
int
|
number of bases to use for normalization |
1000
|
Returns:
| Type | Description |
|---|---|
list[str]
|
list[str]: sequence of commands to execute |
Source code in pypiper/ngstk.py
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 1520 1521 1522 1523 1524 1525 1526 1527 1528 | |
bam_to_fastq
bam_to_fastq(bam_file, out_fastq_pre, paired_end)
Build Picard SamToFastq command for BAM to FASTQ conversion.
Source code in pypiper/ngstk.py
213 214 215 216 217 218 219 220 221 222 223 224 225 226 | |
bam_to_fastq_awk
bam_to_fastq_awk(bam_file, out_fastq_pre, paired_end, zipmode=False)
Build fast awk-based BAM to FASTQ conversion command.
Faster than Picard/bedtools but assumes paired reads are properly ordered with no singletons.
Source code in pypiper/ngstk.py
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 | |
bam_to_fastq_bedtools
bam_to_fastq_bedtools(bam_file, out_fastq_pre, paired_end)
Build bedtools bamtofastq command for BAM to FASTQ conversion.
Source code in pypiper/ngstk.py
261 262 263 264 265 266 267 268 269 270 271 272 273 | |
calc_frip
calc_frip(input_bam, input_bed, threads=4)
Calculate fraction of reads in peaks.
A file of with a pool of sequencing reads and a file with peak call regions define the operation that will be performed. Thread count for samtools can be specified as well.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_bam
|
str
|
sequencing reads file |
required |
input_bed
|
str
|
file with called peak regions |
required |
threads
|
int
|
number of threads samtools may use |
4
|
Returns:
| Name | Type | Description |
|---|---|---|
float |
str
|
fraction of reads in peaks defined in given peaks file |
Source code in pypiper/ngstk.py
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 | |
check_command
check_command(command)
Check if a command is callable on the system.
Source code in pypiper/ngstk.py
155 156 157 158 159 160 161 162 163 164 165 166 | |
check_fastq
check_fastq(input_files, output_files, paired_end)
Return a follow function that validates FASTQ conversion read counts.
Example
cmd, prefix, out = tk.input_to_fastq(bam, name, pe, folder) pm.run(cmd, out, follow=tk.check_fastq(bam, out, pe))
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_files
|
str | list[str]
|
Original input file(s) before conversion. |
required |
output_files
|
str | list[str]
|
FASTQ output file(s) from conversion. |
required |
paired_end
|
bool
|
Whether data is paired-end. |
required |
Returns:
| Type | Description |
|---|---|
Callable
|
Callable that compares read counts and reports stats. |
Source code in pypiper/ngstk.py
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 | |
check_trim
check_trim(trimmed_fastq, paired_end, trimmed_fastq_R2=None, fastqc_folder=None)
Return a follow function that counts trimmed reads and optionally runs FastQC.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trimmed_fastq
|
str
|
Path to trimmed reads file. |
required |
paired_end
|
bool
|
Whether data is paired-end. |
required |
trimmed_fastq_R2
|
str | None
|
Path to R2 trimmed file for paired-end. |
None
|
fastqc_folder
|
str | None
|
If set, run FastQC and place output here. |
None
|
Returns:
| Type | Description |
|---|---|
Callable
|
Callable for use as pm.run() follow function. |
Source code in pypiper/ngstk.py
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 | |
count_concordant
count_concordant(aligned_bam)
Count reads aligned concordantly exactly once (YT:Z:CP flag).
Source code in pypiper/ngstk.py
866 867 868 869 870 871 | |
count_fail_reads
count_fail_reads(file_name, paired_end)
Count reads that failed platform/vendor quality checks (SAM flag 512).
Source code in pypiper/ngstk.py
826 827 828 | |
count_flag_reads
count_flag_reads(file_name, flag, paired_end)
Count reads with a specific SAM flag value.
Source code in pypiper/ngstk.py
807 808 809 810 811 812 813 | |
count_lines
count_lines(file_name)
Count lines in a file using wc -l.
Source code in pypiper/ngstk.py
708 709 710 711 712 713 714 | |
count_lines_zip
count_lines_zip(file_name)
Count lines in a gzipped file using zcat | wc -l.
Source code in pypiper/ngstk.py
716 717 718 719 720 721 722 723 724 725 | |
count_mapped_reads
count_mapped_reads(file_name, paired_end)
Count mapped reads in a BAM/SAM file (excludes unmapped, flag -F4).
Source code in pypiper/ngstk.py
873 874 875 876 877 878 879 | |
count_multimapping_reads
count_multimapping_reads(file_name, paired_end)
Count reads flagged as multimapping (SAM flag 256).
Source code in pypiper/ngstk.py
815 816 817 | |
count_reads
count_reads(file_name, paired_end)
Count reads in a BAM/SAM/FASTQ file.
Paired-end reads count as 2. Assumes paired-end FASTQs are split into separate R1/R2 files (divides line count by 2 instead of 4).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_name
|
str
|
Path to BAM/SAM/FASTQ file. |
required |
paired_end
|
bool
|
Whether the file contains paired-end reads. |
required |
Source code in pypiper/ngstk.py
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 | |
count_unique_mapped_reads
count_unique_mapped_reads(file_name, paired_end)
Count mapped reads (by name, deduplicated) in a BAM/SAM file.
Source code in pypiper/ngstk.py
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 | |
count_unique_reads
count_unique_reads(file_name, paired_end)
Count unique reads (by name) in a BAM/SAM file. Paired-end counts as 2.
Source code in pypiper/ngstk.py
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 | |
count_uniquelymapping_reads
count_uniquelymapping_reads(file_name, paired_end)
Count reads that mapped to a unique position (exclude flag 256).
Source code in pypiper/ngstk.py
819 820 821 822 823 824 | |
fastqc
fastqc(file, output_dir)
Build FastQC command for a reads file.
Source code in pypiper/ngstk.py
951 952 953 954 955 956 957 958 959 960 961 962 963 | |
fastqc_rename
fastqc_rename(input_bam, output_dir, sample_name)
Build commands to run FastQC and rename output by sample name.
Source code in pypiper/ngstk.py
965 966 967 968 969 970 971 972 973 974 975 | |
filter_reads
filter_reads(input_bam, output_bam, metrics_file, paired=False, cpus=16, Q=30)
Build commands to dedup, quality-filter, and remove multimappers.
Source code in pypiper/ngstk.py
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 | |
get_chrs_from_bam
get_chrs_from_bam(file_name)
Extract chromosome names from a BAM file header via samtools.
Source code in pypiper/ngstk.py
727 728 729 730 731 732 733 734 735 736 737 | |
get_file_size
get_file_size(filenames)
Get total size of file(s) in megabytes.
Source code in pypiper/ngstk.py
168 169 170 171 172 173 174 175 176 177 178 179 180 | |
get_frip
get_frip(sample)
Calculates the fraction of reads in peaks for a given sample.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sample
|
Sample
|
Sample object with "peaks" attribute. |
required |
Source code in pypiper/ngstk.py
1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 | |
get_input_ext
get_input_ext(input_file)
Detect input file type: ".bam", ".fastq.gz", or ".fastq".
Source code in pypiper/ngstk.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | |
get_mitochondrial_reads
get_mitochondrial_reads(bam_file, output, cpus=4)
Source code in pypiper/ngstk.py
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 | |
get_peak_number
get_peak_number(sample)
Counts number of peaks from a sample's peak file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sample
|
Sample
|
Sample object with "peaks" attribute. |
required |
Source code in pypiper/ngstk.py
1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 | |
get_read_type
get_read_type(bam_file, n=10)
Gets the read type (single, paired) and length of bam file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bam_file
|
str
|
Bam file to determine read attributes. |
required |
n
|
int
|
Number of lines to read from bam file. |
10
|
Returns:
| Type | Description |
|---|---|
tuple[str, int]
|
str, int: tuple of read type and read length |
Source code in pypiper/ngstk.py
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 | |
input_to_fastq
input_to_fastq(input_file, sample_name, paired_end, fastq_folder, output_file=None, multiclass=False, zipmode=False)
Build command to convert any input (.bam/.fastq.gz/.fastq) to FASTQ.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_file
|
str | list[str]
|
Path(s) to input file(s). |
required |
sample_name
|
str
|
Sample name for output file naming. |
required |
paired_end
|
bool
|
Whether data is paired-end. |
required |
fastq_folder
|
str
|
Directory for output FASTQ files. |
required |
output_file
|
str | None
|
Explicit output path (auto-derived if None). |
None
|
multiclass
|
bool
|
Internal flag for recursive R1/R2 handling. |
False
|
zipmode
|
bool
|
Output as .fastq.gz instead of .fastq. |
False
|
Returns:
| Type | Description |
|---|---|
list
|
List of [command, fastq_prefix, output_file]. |
Source code in pypiper/ngstk.py
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 | |
macs2_call_peaks
macs2_call_peaks(treatment_bams, output_dir, sample_name, genome, control_bams=None, broad=False, paired=False, pvalue=None, qvalue=None, include_significance=None)
Use MACS2 to call peaks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
treatment_bams
|
str | Iterable[str]
|
Paths to files with data to regard as treatment. |
required |
output_dir
|
str
|
Path to output folder. |
required |
sample_name
|
str
|
Name for the sample involved. |
required |
genome
|
str
|
Name of the genome assembly to use. |
required |
control_bams
|
str | Iterable[str]
|
Paths to files with data to regard as control |
None
|
broad
|
bool
|
Whether to do broad peak calling. |
False
|
paired
|
bool
|
Whether reads are paired-end |
False
|
pvalue
|
float | NoneType
|
Statistical significance measure to pass as --pvalue to peak calling with MACS |
None
|
qvalue
|
float | NoneType
|
Statistical significance measure to pass as --qvalue to peak calling with MACS |
None
|
include_significance
|
bool | NoneType
|
Whether to pass a statistical significance argument to peak calling with MACS; if omitted, this will be True if the peak calling is broad or if either p-value or q-value is specified; default significance specification is a p-value of 0.001 if a significance is to be specified but no value is provided for p-value or q-value. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Command to run. |
Source code in pypiper/ngstk.py
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 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 | |
make_dir
make_dir(path)
Create directory and all intermediates, no error if exists.
Source code in pypiper/ngstk.py
142 143 144 145 146 147 148 | |
make_sure_path_exists
make_sure_path_exists(path)
Alias for make_dir
Source code in pypiper/ngstk.py
150 151 152 | |
merge_bams
merge_bams(input_bams, merged_bam, in_sorted='TRUE', tmp_dir=None)
Build Picard MergeSamFiles command to combine BAM files.
Source code in pypiper/ngstk.py
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 | |
merge_fastq
merge_fastq(inputs, output, run=False, remove_inputs=False)
Merge multiple FASTQ files into one via cat.
Source code in pypiper/ngstk.py
693 694 695 696 697 698 699 700 701 702 703 704 705 706 | |
merge_or_link
merge_or_link(input_args, raw_folder, local_base='sample')
Standardize inputs by linking or merging .bam/.fastq/.fastq.gz files.
Example
local = tk.merge_or_link([["s1_R1.fq.gz"], ["s1_R2.fq.gz"]], "raw/", "sample1")
For single files, creates a symlink. For multiple files of the same type, merges them (cat for fastq, samtools merge for bam).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_args
|
list
|
List of input file paths or list of lists (R1/R2). |
required |
raw_folder
|
str
|
Directory for the merge/link output. |
required |
local_base
|
str
|
Base name for output file (usually sample name). |
'sample'
|
Source code in pypiper/ngstk.py
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 | |
parse_bowtie_stats
parse_bowtie_stats(stats_file)
Parses Bowtie2 stats file, returns dict with values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stats_file
|
str
|
Bowtie2 output file with alignment statistics. |
required |
Source code in pypiper/ngstk.py
1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 | |
parse_duplicate_stats
parse_duplicate_stats(stats_file)
Parses sambamba markdup output, returns dict with values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stats_file
|
str
|
sambamba output file with duplicate statistics. |
required |
Source code in pypiper/ngstk.py
1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 | |
parse_qc
parse_qc(qc_file)
Parse phantompeakqualtools (spp) QC table and return quality metrics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
qc_file
|
str
|
Path to phantompeakqualtools output file, which contains sample quality measurements. |
required |
Source code in pypiper/ngstk.py
1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 | |
plot_atacseq_insert_sizes
plot_atacseq_insert_sizes(bam, plot, output_csv, max_insert=1500, smallest_insert=30)
Heavy inspiration from here: https://github.com/dbrg77/ATAC/blob/master/ATAC_seq_read_length_curve_fitting.ipynb
Source code in pypiper/ngstk.py
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 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 | |
run_spp
run_spp(input_bam, output, plot, cpus)
Run the SPP read peak analysis tool.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_bam
|
str
|
Path to reads file |
required |
output
|
str
|
Path to output file |
required |
plot
|
str
|
Path to plot file |
required |
cpus
|
int
|
Number of processors to use |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Command with which to run SPP |
Source code in pypiper/ngstk.py
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 | |
sam_conversions
sam_conversions(sam_file, depth=True)
Build command to convert SAM to sorted/indexed BAM (optionally with depth).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sam_file
|
str
|
Path to SAM file. |
required |
depth
|
bool
|
Also calculate per-position coverage. |
True
|
Source code in pypiper/ngstk.py
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 | |
samtools_index
samtools_index(bam_file)
Index a bam file.
Source code in pypiper/ngstk.py
977 978 979 980 | |
samtools_view
samtools_view(file_name, param, postpend='')
Run samtools view with given parameters and optional post-processing pipe.
Source code in pypiper/ngstk.py
830 831 832 833 834 835 | |
skewer
skewer(input_fastq1, output_prefix, output_fastq1, log, cpus, adapters, input_fastq2=None, output_fastq2=None)
Build skewer adapter-trimming commands with file renaming.
Source code in pypiper/ngstk.py
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | |
spp_call_peaks
spp_call_peaks(treatment_bam, control_bam, treatment_name, control_name, output_dir, broad, cpus, qvalue=None)
Build command for R script to call peaks with SPP.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
treatment_bam
|
str
|
Path to file with data for treatment sample. |
required |
control_bam
|
str
|
Path to file with data for control sample. |
required |
treatment_name
|
str
|
Name for the treatment sample. |
required |
control_name
|
str
|
Name for the control sample. |
required |
output_dir
|
str
|
Path to folder for output. |
required |
broad
|
str | bool
|
Whether to specify broad peak calling mode. |
required |
cpus
|
int
|
Number of cores the script may use. |
required |
qvalue
|
float
|
FDR, as decimal value |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Command to run. |
Source code in pypiper/ngstk.py
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 | |
validate_bam
validate_bam(input_bam)
Build Picard ValidateSamFile command.
Source code in pypiper/ngstk.py
644 645 646 647 648 649 | |