This file contains hidden or 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
#!/usr/bin/env python | |
# Changes: python3, argparse, gff3 | |
# check if python >= 3.6 | |
import argparse | |
import sys | |
def main(input_file, output_file): | |
"""Converts a file from the BED (Browser Extensible Data) format to the GFF3 (General Feature Format version 3) format.""" |
This file contains hidden or 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
bootstraps_mann_whitney <- function(bootstraps_number, sample_1, sample_2) { | |
differences <- numeric() | |
for (i in sample_1) { | |
for (j in sample_2) { | |
differences[1 + length(differences)] <- i - j | |
} | |
} | |
bootstraps_statistic <- numeric(bootstraps_number) | |
hodges_lehmann_estimator <- median(differences) | |
sample_1_delta <- sample_1 - hodges_lehmann_estimator |
NewerOlder