Contig1 | Contig2 | Edge |
---|---|---|
Salmonella~virus~FSLSP030 | k141_1850 | 82.900904361823 |
k141_1850 | Salmonella~virus~FSLSP030 | 82.900904361823 |
Salmonella~virus~Chi | k141_1850 | 77.68907855001756 |
k141_1850 | Salmonella~virus~Chi | 77.68907855001756 |
Salmonella~virus~FSLSP088 | k141_1850 | 74.64006567255709 |
k141_1850 | Salmonella~virus~FSLSP088 | 74.64006567255709 |
Salmonella~phage~118970_sal1 | k141_1850 | 74.42229632318072 |
k141_1850 | Salmonella~phage~118970_sal1 | 74.42229632318072 |
This file contains 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
# https://forum.nim-lang.org/t/8162#52466 | |
import strutils | |
proc floatSeparator(f: float, s=","): string = | |
var s = ($f).split('.') | |
s[0] = s[0].insertSep(',') | |
return s.join(".") | |
let |
This file contains 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
#!/bin/bash | |
set -euo pipefail | |
FOR=CCTACGGGNGGCWGCAG | |
REV=GGACTACHVGGGTATCTAATCC | |
# Cutadapt options | |
MINL=250 | |
EXTRA=" --report minimal --cores 0 --discard-untrimmed " |
This file contains 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
#Function to print to STDERR | |
echoerr() { echo "$@" 1>&2; } |
This file contains 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 python3 | |
# Parses a file with a list of URLs (GTR user) and prints | |
# a table with their projects details | |
import json | |
import sys | |
import traceback | |
import urllib3 | |
import xmltodict | |
from pprint import pprint |
This file contains 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
library(dada2) | |
library(ggplot) | |
packageVersion("dada2") | |
library(ShortRead) | |
packageVersion("ShortRead") | |
library(Biostrings) | |
packageVersion("Biostrings") | |
path <- "/Volumes/Informatics/telatin/qibx/ITS/" | |
prmr_funcn <- function(prmr) { | |
prmr_dna <- DNAString(prmr) |
This file contains 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 python3 | |
""" | |
A program to check that a list of programs is avalable retrieving their versions, if required. | |
Example configuration JSON (by default will look for 'checker.json' in the same directory as the program itself): | |
{ | |
"binaries": { | |
"Zip": { | |
"params": ["-h"], | |
"binary": "zip", | |
"stdout": "Copyright", |
This file contains 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
Bootstrap: docker | |
From: centos:centos7.6.1810 | |
%environment | |
source /opt/software/conda/bin/activate /opt/software/conda_env | |
%post | |
yum -y install epel-release wget which nano curl zlib-devel |
This file contains 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 python3 | |
from scholarly import scholarly | |
import sys | |
def stderr(*args, **kwargs): | |
print(*args, file=sys.stderr, **kwargs) | |
author_id = 'Bua3yncAAAAJ' | |
author = scholarly.search_author_id(author_id).fill() |
NewerOlder