Update headers

This commit is contained in:
Godwin Ani 2024-01-12 10:59:47 -05:00 committed by GitHub
parent 085d9849e3
commit 05d15104cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,13 @@
''' '''
Professor L. Katz and Godwin Ani #Author, date: Godwin Ani, 9th- Feb - 2023.
9th-Feb-2023 #Dependencies: Python3, Biopython
Seq_length_to_csv is a program that exports the length of DNA sequences excluding gaps and missing data to a csv file. #Intent: Exports the length of DNA sequences excluding gaps and missing data to a csv file.
#Inputs: A folder named 'Seq_length' containing DNA fasta files.
#Outputs: A spreadsheet containing the length of the sequences.
#Example: python Seq_length_to_csv.py
''' '''
import os, sys, re import os, sys, re
from Bio import SeqIO from Bio import SeqIO
from Bio.Seq import Seq from Bio.Seq import Seq