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 perl | |
use strict; | |
use warnings; | |
use Getopt::Long; | |
my $fileA = undef; | |
my $fileB = undef; | |
my $result = GetOptions("fileA=s" => \$fileA, "fileB=s" => \$fileB); |
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
SHELL:=/bin/bash | |
VERSION=4.12.0 | |
MEME_VERSION=meme_${VERSION} | |
GS=/net/module/sw/ghostscript/9.19/bin/gs | |
CONVERT=/net/module/sw/ImageMagick/7.0.2-0/bin/convert | |
MPIDIR=/net/module/sw/openmpi/1.10.2 | |
TEST_FASTA=${PWD}/../data/sequences.fa | |
RESULTS_DIR=${PWD}/../results | |
DEST_DIR=${RESULTS_DIR}/${MEME_VERSION} |
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
BEGIN { | |
FS="\t"; | |
old_chr = "chrN"; | |
old_start = -1; | |
old_stop = -1; | |
old_id = "*"; | |
old_score = "*"; | |
old_strand = "*"; | |
new_element_flag = 0; | |
} |
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
BEGIN { | |
FS="\t"; | |
old_chr = "chrN"; | |
old_start = -1; | |
old_stop = -1; | |
old_id = "*"; | |
old_score = "*"; | |
old_strand = "*"; | |
} | |
{ |
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
BEGIN { | |
FS="\t"; | |
old_chr = "chrN"; | |
old_start = -1; | |
old_stop = -1; | |
old_id = "*"; | |
old_score = "*"; | |
old_strand = "*"; | |
} | |
{ |
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 | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.common.by import By | |
from selenium.common.exceptions import TimeoutException | |
import sys | |
import time |
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
import java.io.IOException; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.chrome.ChromeOptions; | |
import org.openqa.selenium.chrome.ChromeDriver; | |
import org.testng.annotations.Test; | |
public class LocalSeleniumTest { | |
public static void main(String[] args) throws IOException, InterruptedException { | |
System.setProperty("webdriver.chrome.driver", "/usr/bin/chromedriver"); |
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 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
const puppeteer = require('puppeteer'); | |
async function stall(stallTime = 3000) { | |
await new Promise(resolve => setTimeout(resolve, stallTime)); | |
} | |
(async() => { | |
const width = 1024; | |
const height = 1280; |
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 | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.common.by import By | |
from selenium.common.exceptions import TimeoutException | |
import sys | |
import time | |
import base64 |