Skip to content
View bdkech's full-sized avatar
🧬
🧬

Block or report bdkech

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. my_docker my_docker Public

    Dockerfiles and builds that I am using

    Dockerfile

  2. standardize_text.py standardize_text.py
    1
    def standardize(s):
    2
      import re
    3
      try:
    4
        standard_s = re.sub('[^0-9a-zA-Z]+', '_', str(s)).lower()
    5
        return standard_s
  3. bdsg_analysis bdsg_analysis Public

    Code base for broadly dosage sensitive genes in TCGA data

    Jupyter Notebook 1

  4. argo_dynamic_distribute argo_dynamic_distribute Public

    Argo workflow config for dynamically distributed job

  5. ai_tutorial ai_tutorial Public

    Codebase for demonstrating AI applications

    Jupyter Notebook 1 2

  6. csv-streamer csv-streamer Public

    A flexible command-line tool for simulating real-time data streams from CSV files.

    Python