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 | |
# Function to handle Ctrl+C | |
handle_interrupt() { | |
echo -e "\n\033[1;31mERROR:\033[1m Script interrupted by user (Ctrl+C)\033[0m" | |
exit 1 | |
} | |
# Set up the trap to catch SIGINT (Ctrl+C) | |
trap handle_interrupt SIGINT |
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
####################################################################### | |
# tmux.conf # | |
####################################################################### | |
####################################################################### | |
# Setting the prefix from C-b to C-a # | |
####################################################################### | |
set -g prefix C-a | |
####################################################################### |
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 python | |
import argparse | |
import hashlib | |
import sys | |
from collections import namedtuple | |
from typing import List, Dict, Tuple, Union | |
# from https://github.com/galaxyproject/galaxy/blob/f12ee5ce6d602cd4c8b4cfc2112988b84a4f255e/lib/galaxy/tool_util/deps/mulled/util.py#L185 | |
Target = namedtuple("Target", ["package_name", "version", "build", "package"]) |
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
##gff-version 3 | |
#!gff-spec-version 1.21 | |
#!processor NCBI annotwriter | |
#!genome-build ASM985889v3 | |
#!genome-build-accession NCBI_Assembly:GCA_009858895.3 | |
##sequence-region MN908947.3 1 29903 | |
##species https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=2697049 | |
MN908947.3 Genbank region 1 29903 . + . ID=MN908947.3:1..29903;Dbxref=taxon:2697049;collection-date=Dec-2019;country=China;gbkey=Src;genome=genomic;isolate=Wuhan-Hu-1;mol_type=genomic RNA;nat-host=Homo sapiens;old-name=Wuhan seafood market pneumonia virus | |
MN908947.3 Genbank five_prime_UTR 1 265 . + . ID=id-MN908947.3:1..265;gbkey=5'UTR | |
MN908947.3 Genbank gene 266 13468 . + . ID=gene-ORF1a;Name=ORF1a;gbkey=Gene;gene=ORF1a;gene_biotype=protein_coding |
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
process { | |
withName: PANGOLIN { | |
container = 'quay.io/biocontainers/pangolin:3.1.20--pyhdfd78af_0' | |
} | |
} |
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 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 | |
# coding: utf-8 | |
import logging | |
import subprocess | |
from io import StringIO | |
from pathlib import Path | |
from typing import Optional | |
import sys |
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 python | |
from pathlib import Path | |
import logging | |
import typer | |
import numpy as np | |
import pandas as pd | |
import seaborn as sns | |
import matplotlib.gridspec as gridspec |
NewerOlder