-
Notifications
You must be signed in to change notification settings - Fork 23
uppercase_seq
Martin Asser Hansen edited this page Oct 2, 2015
·
5 revisions
upppercase_seq changes all lowercase letter in sequences to uppercase letters.
... | uppercase_seq [options]
[-? | --help] # Print full usage description.
[-I <file!> | --stream_in=<file!>] # Read input from stream file - Default=STDIN
[-O <file> | --stream_out=<file>] # Write output to stream file - Default=STDOUT
[-v | --verbose] # Verbose output.
Consider the following sequence entry in FASTA format in the file test.fna
:
>test
ACGACGCATNNNNNNactgatcga
To read in this sequence use read_fasta to uppercase all letters:
read_fasta -i test.fna | uppercase_seq
SEQ: ACGACGCATNNNNNNACTGATCGA
SEQ_NAME: test
SEQ_LEN: 24
---
Martin Asser Hansen - Copyright (C) - All rights reserved.
August 2007
GNU General Public License version 2
http://www.gnu.org/copyleft/gpl.html
uppercase_seq is part of the Biopieces framework.