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 | |
# ------------------------------------------------------------------------------ | |
# Script: Assembly metrics | |
# Author: Anuj Sharma | |
# Github: rknx/ | |
# Email: [email protected] | |
# Description: This script is used to calculate various assembly metrics from | |
# a single multiFASTA file, often a genome assembly. | |
# Last modified: <2022/08/04> |
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
#!/bin/bash | |
######################################### | |
# Anuj Sharma # | |
# [email protected] # | |
# 2022-10-13 # | |
######################################### | |
# Usage: FastaToSNPCount.sh <input.fasta> |
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
#!/bin/bash | |
######################################### | |
# Anuj Sharma # | |
# [email protected] # | |
# 2022-05-18 # | |
######################################### | |
# Reading the input parameters | |
OPTIND=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
#!/bin/bash | |
######################################### | |
# Anuj Sharma # | |
# [email protected] # | |
# 2022-06-24 # | |
######################################### | |
# Reading the input parameters |
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
#!/bin/bash | |
########## Anuj Sharma ########## | |
########## [email protected] ########## | |
########## github/rknx ########## | |
########## 2022/01/04 ########## | |
[[ -z "$1" ]] && echo "Usage: gff2gtf.sh in.gff > out.gtf" >&2 && exit | |
[[ ! -s "$1" ]] && echo "Provide valid input file" >&2 && exit |