Skip to content

Instantly share code, notes, and snippets.

View AswinSSoman's full-sized avatar
🎯
Focusing

Aswin S Soman AswinSSoman

🎯
Focusing
View GitHub Profile
@AswinSSoman
AswinSSoman / How to use images in Markdown file.md
Last active May 29, 2023 13:19
Scripts of how to add, align, resize, and modify images in agithub markdown file.

1. To put an image from internet link.

1.1 To just place an image (with native resolution).

Use this command :

![Infinity War](https://i.redd.it/4y4m7jl5yfbz.jpg)

Infinity Wars

 

@AswinSSoman
AswinSSoman / terminal.md
Last active September 6, 2019 06:23
Linux terminal commands #terminal #linux

FILES

mkdir - create directory

touch 1.txt - create file

touch {1,2,3}.txt - create 1.txt 2.txt and 3.txt

rm - remove file or dir

Basics of Linux

This guide is designed to help new users understand the more important aspects of Linux. It is not meant to be an exhaustive tutorial, but rather a primer.


Introduction

Linux (or GNU/Linux) isn't one singular operating system as many people believe it to be, but rather a broader term for a large number of operating systems built using the Linux kernel. These different operating systems are referred to as distributions or "distros". Different Linux distributions use the same mostly the same software but are packaged and setup differently. Many, if not most, distros are based of off other more popular distros. The major differences that the average user notices are in what desktop environment the distro uses, and how/where software is managed and installed from.

@AswinSSoman
AswinSSoman / Mapping Lambda phage.md
Last active September 5, 2019 11:44
Calling Variants from Nanopore sequencing of Lambda phage, alligned with BWA/GraphMap.

1. Install BWA From Github

  • git clone bwa repository from github/lh3
  • Go inside downloaded bwa folder: cd bwa
  • Recompile the pieces of the program using command: make

2. Download Lambda phage reference genome from ncbi

  • 2.1 Manual downloading
    • Search lambda phage in Genome database.
    • Click on Genome Assembly and Annotation report.
  • Click on NC_001416.1 on segments.
@AswinSSoman
AswinSSoman / Variant Calling Lambda phage.md
Last active September 5, 2019 11:44
BWA allignment of Lambda phage genome

1. Install Samtools

  • Samtools is a suite of programs for interacting with high-throughput sequencing data.

  • Download samtools-1.9, bcftools-1.9, htslib-1.9 from htslib.org

  • First install htslib-1.9

  • Unzip & go inside htslib folder in terminal and type the following.

    ./configure
     make
     sudo make install