- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
- v1-dependencies-
- save_cache:
key: v1-dependencies-{{ checksum "requirements.txt" }}
paths:
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 | |
""" | |
Created by: Lee Bergstrand | |
Description: Makes newer InterProScan TSV file compatible with Pygenprop. | |
Requirements: None | |
""" |
We can't make this file beautiful and searchable because it's too large.
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
NC_007514.1_1800 2da1d06b2f7f511868a9c2917777ab82 498 Pfam PF12183 Restriction endonuclease NotI 231 461 7.8E-98 T 14-05-2018 IPR022009 Restriction endonuclease, type II, NotI | |
NC_007514.1_1661 c1968ae7cab9a5d53947002f3518f2c2 247 Pfam PF02585 GlcNAc-PI de-N-acetylase 11 127 4.3E-21 T 14-05-2018 IPR003737 N-acetylglucosaminyl phosphatidylinositol deacetylase-related Reactome: R-HSA-162710 | |
NC_007514.1_1661 c1968ae7cab9a5d53947002f3518f2c2 247 TIGRFAM TIGR04001 thiol_BshB1: bacillithiol biosynthesis deacetylase BshB1 8 235 1.9E-96 T 14-05-2018 IPR023842 Bacillithiol biosynthesis deacetylase, BshB1 GO:0019213|GO:0071793 | |
NC_007514.1_1661 c1968ae7cab9a5d53947002f3518f2c2 247 PANTHER PTHR12993:SF21 11 232 2.8E-49 T 14-05-2018 | |
NC_007514.1_1661 c1968ae7cab9a5d53947002f3518f2c2 247 PANTHER PTHR12993 11 232 2.8E-49 T 14-05-2018 IPR003737 N-acetylglucosaminyl phosphatidylinositol deacetylase-related Reactome: R-HSA-162710 | |
NC_007514.1_1652 87cd3c15562a2ce4954e59e9d87f2ae8 404 Pfam PF01747 ATP-sulfurylase 175 385 1. |
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
version: 2 | |
jobs: | |
build: | |
working_directory: ~/repo | |
machine: true | |
steps: | |
- checkout |
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 bash | |
if [ $# -eq 0 ] | |
then | |
echo "No arguments supplied..." | |
echo "Please provide a minimum number of seqs per file." | |
exit 1 | |
fi | |
MIN_LENGTH=$1 |
This file has been truncated, but you can view the full file.
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
==> Downloading https://downloads.sourceforge.net/project/boost/boost/1.58.0/boost_1_58_0.tar.bz2 | |
Already downloaded: /home/lee2/.cache/Homebrew/boost-1.58.0.tar.bz2 | |
==> Verifying boost-1.58.0.tar.bz2 checksum | |
tar xf /home/lee2/.cache/Homebrew/boost-1.58.0.tar.bz2 | |
==> ./bootstrap.sh --prefix=/home/lee2/.linuxbrew/Cellar/boost/1.58.0 --libdir=/home/lee2/.linuxbrew/Cellar/boost/1.58.0/lib --without-icu --without-libraries=python,mpi | |
Building Boost.Build engine with toolset gcc... tools/build/src/engine/bin.linuxx86_64/b2 | |
Unicode/ICU support for Boost.Regex?... disabled. | |
Generating Boost.Build configuration in project-config.jam... | |
Bootstrapping is done. To build, run: |
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 | |
# Created by: Lee Bergstrand | |
# Modified by: Matt McInnes | |
# License: MIT | |
# Descript: Trims FASTAs from the assembler SPAdes by coverage to remove low coverage contigs. | |
# ---------------------------------------------------------------------------------------- | |
# =========================================================================================================== | |
# Imports: | |
import argparse |
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 | |
# Why you should think about hidden escape characters in your code... | |
# Only some editors show hidden characters. | |
Blam = ":" | |
print repr(Blam) | |
Blam = ":" | |
print repr(Blam) | |
print repr("WAT") |
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
require 'formula' | |
class Pypy < Formula | |
homepage 'http://pypy.org/' | |
url 'https://bitbucket.org/pypy/pypy/downloads/pypy-2.3-linux64.tar.bz2' | |
version '2.3.0' | |
sha1 '5bf5e2b2d9a002a9d81830dfffe5fa68959a8f40' | |
resource 'setuptools' do | |
url 'https://pypi.python.org/packages/source/s/setuptools/setuptools-3.6.tar.gz' |
I was recently reverse engineering dbCAN's shell/perl script (hmmscan-parser.sh) for parsing HMMER's hmmscan human readable text results. Unfortunately, while figuring out how this script works I found an error.
#####Orignal Script:
#!/usr/bin/env sh
# Yanbin Yin
# 08/18/2011
NewerOlder