Skip to content

Instantly share code, notes, and snippets.

View hossainlab's full-sized avatar
😎
Probably Learning!

Jubayer Hossain hossainlab

😎
Probably Learning!
View GitHub Profile
@hossainlab
hossainlab / data_collection.md
Created June 2, 2020 11:13
Tools for Data Collection

Introduction to Data Collection and Management Tools for Researchers

  1. Introduction to Basic Data Collection Tools
  2. Data Collection Methods
  3. Introduction to Excel / Google Spread Sheets / Data Entry
  4. How to do Online Survey with Google / Microsoft Form ?
  5. Datasets Documentation with Markdown
  6. Data Management with Git & Github
@hossainlab
hossainlab / mysql.md
Created March 28, 2020 13:46
MySQL Installing and Removing in Ubuntu 19.10

MySQL Installing and Removing in Ubuntu 19.10

Check MySQL in Your System

systemctl status mysql.service 

Install MySQL on Ubuntu 19.10

sudo apt update
sudo apt install mysql-server
@hossainlab
hossainlab / COVID-19.md
Last active March 7, 2020 04:53
COVID-19

COVID-19 Study and Awareness for Bangladesh

Goals

  • Poster Design(Bangla & English)
  • Raising Public Awareness

Instructions

  • Keep text fewer than 5 lines long
  • List info with bullet points instead of using full paragraphs
@hossainlab
hossainlab / python_package_for_bioresearch.md
Created February 8, 2020 17:31
Python packages for biological research
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Calculating GC Content

GC Content

In molecular biology and genetics, GC-content (or guanine-cytosine content) is the percentage of nitrogenous bases in a DNA or RNA molecule that are either guanine (G) or cytosine (C). GC-content may be given for a certain fragment of DNA or RNA or for an entire genome.

GC-content may be given for a certain fragment of DNA or RNA or for an entire genome. When it refers to a fragment, it may denote the GC-content of an individual gene or section of a gene (domain), a group of genes or gene clusters, a non-coding region, or a synthetic oligonucleotide such as a primer. See More on Wikipedia

Calculation

GC-content is usually expressed as a percentage value, but sometimes as a ratio (called G+C ratio or GC-ratio). GC-content percentage is calculated as

@hossainlab
hossainlab / table.py
Created January 5, 2020 15:01
Codon Table
table = {
'ATA':'I', 'ATC':'I', 'ATT':'I', 'ATG':'M',
'ACA':'T', 'ACC':'T', 'ACG':'T', 'ACT':'T',
'AAC':'N', 'AAT':'N', 'AAA':'K', 'AAG':'K',
'AGC':'S', 'AGT':'S', 'AGA':'R', 'AGG':'R',
'CTA':'L', 'CTC':'L', 'CTG':'L', 'CTT':'L',
'CCA':'P', 'CCC':'P', 'CCG':'P', 'CCT':'P',
'CAC':'H', 'CAT':'H', 'CAA':'Q', 'CAG':'Q',
'CGA':'R', 'CGC':'R', 'CGG':'R', 'CGT':'R',
'GTA':'V', 'GTC':'V', 'GTG':'V', 'GTT':'V',

Removing Folder Completely

sudo rm -r ./folder_name
@hossainlab
hossainlab / learning_resources.md
Last active June 27, 2024 17:26
MOOCs and blog list for learning bioinformatics and computational biology