General:
| Tools | Description |
|---|---|
| flank | Create new intervals from the flanks of existing intervals. |
| slop | Adjust the size of intervals. |
| shift | Adjust the position of intervals. |
| subtract | Remove intervals based on overlaps b/w two files. |
| require 'pycall' | |
| require 'pycall/import' | |
| include PyCall::Import | |
| require 'matplotlib/iruby' | |
| Matplotlib::IRuby.activate | |
| pyimport :pandas, as: :pd | |
| pyimport :seaborn, as: :sns | |
| FROM tensorflow/tensorflow:1.15.2-py3 | |
| LABEL maintainer="kojix2 <2xijok@gmail.com>" | |
| RUN set -x && \ | |
| apt update -y && \ | |
| apt install -y wget unzip libsm6 libxrender1 libxext-dev && \ | |
| pip3 install --upgrade pip && \ | |
| pip3 install scikit-learn && \ | |
| pip3 install matplotlib && \ | |
| pip3 install opencv-python | |
| RUN wget https://github.com/lindawangg/COVID-Net/archive/master.zip |
| require 'gr' | |
| require 'gr3' | |
| require 'numo/narray' | |
| require 'optparse' | |
| # コマンドラインオプション | |
| options = { radius: 1.0, size: 500 } | |
| OptionParser.new do |opt| | |
| opt.on('-o', '--output PATH', String) { |v| options[:save_path] = v } | |
| opt.on('-r', '--radius VALUE', Float) { |v| options[:radius] = v } |
| a |
2021-01-16 kojiox2
Github - https://github.com/kojix2/ruby-htslib
Slack - https://sciruby.slack.com
(Created by Google Translate)
2021-01-25 kojix2
Github: https://github.com/kojix2/ruby-htslib
Slack: https://sciruby.slack.com (Japanese)
| # frozen_string_literal: true | |
| require "ffi" | |
| module FFI | |
| class BitStruct < Struct | |
| class << self | |
| # def union_layout(*args) | |
| # Class.new(FFI::Union) { layout(*args) } | |
| # end |