This file contains hidden or 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/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; |
This file contains hidden or 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 | |
| if [ -z "$1" ]; then | |
| echo "waiting for the following arguments: username + max-page-number" | |
| exit 1 | |
| else | |
| name=$1 | |
| fi | |
| if [ -z "$2" ]; then |