Skip to content

Instantly share code, notes, and snippets.

View zm-git-dev's full-sized avatar

zm zm-git-dev

View GitHub Profile
@zm-git-dev
zm-git-dev / parse_gff3_cds.pl
Created July 25, 2018 01:10 — forked from liyupeng111/parse_gff3_cds.pl
get cds sequences from gff3 file
#!/usr/bin/perl
# parse_gff3.pl
# get the cds sequences from gff3 file.
# usage: perl parse_gff3_cds.pl gff3_input_file genome_sequence_directory >output.txt
use strict;
use warnings;
use Bio::Tools::GFF;
use Bio::DB::Fasta;
@zm-git-dev
zm-git-dev / sugh.sh
Created July 26, 2022 00:51 — forked from erdincay/sugh.sh
su GitHub (downloading all repositories from a given user)
#!/bin/bash
if [ -z "$1" ]; then
echo "waiting for the following arguments: username + max-page-number"
exit 1
else
name=$1
fi
if [ -z "$2" ]; then