Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fastq_quality_trimmer(1) [debian man page]

FASTQ_QUALITY_TRIMMER(1)					   User Commands					  FASTQ_QUALITY_TRIMMER(1)

NAME
fastq_quality_trimmer - Filters sequences based on quality DESCRIPTION
usage: fastq_quality_trimmer [-h] [-v] [-t N] [-l N] [-z] [-i INFILE] [-o OUTFILE] Part of FASTX Toolkit 0.0.13.1 by A. Gordon (gor- don@cshl.edu) [-h] = This helpful help screen. [-t N] = Quality threshold - nucleotides with lower quality will be trimmed (from the end of the sequence). [-l N] = Minimum length - sequences shorter than this (after trimming) will be discarded. Default = 0 = no minimum length. [-z] = Compress output with GZIP. [-i INFILE] = FASTQ input file. default is STDIN. [-o OUTFILE] = FASTQ output file. default is STDOUT. [-v] = Verbose - report number of sequences. If [-o] is specified, report will be printed to STDOUT. If [-o] is not specified (and output goes to STDOUT), report will be printed to STDERR. SEE ALSO
The quality of this automatically generated manpage might be insufficient. It is suggested to visit http://hannonlab.cshl.edu/fastx_toolkit/commandline.html to get a better layout as well as an overview about connected FASTX tools. fastq_quality_trimmer 0.0.13.1 April 2012 FASTQ_QUALITY_TRIMMER(1)

Check Out this Related Man Page

KSSHELL(1)						      General Commands Manual							KSSHELL(1)

NAME
ksshell -- an interactive kickstart shell SYNOPSIS
ksflatten [-i | --input INFILE] [-o | --output OUTFILE] [-v | --version VERSION] DESCRIPTION
ksshell is an interactive kickstart shell. It optionally takes an input kickstart file as the basis, allows the user to specify additional kickstart commands, and then writes out the finished kickstart file to stdout or the given file name. This program supports all the usual readline niceties including tab completion of kickstart commands and their options, though not the values those options can take. In addition to understanding all the kickstart commands, ksshell has some builtin commands of its own to make working with kickstart files in the context of a shell easier: .clear Clear the existing kickstart data, including any from INFILE. This essentially starts you over from a blank state. .quit Quit the interactive shell, either saving to the file given by OUTFILE or printing to stdout if none was given. .show Print the current kickstart file state. EXIT STATUS
ksflatten returns 0 on success, and 1 if VERSION is incorrect. If INFILE does not exist, a warning will be printed but the user will still be dumped to the interactive shell. OPTIONS
-i, --input INFILE The name of the input kickstart file. -o, --output OUTFILE Write the flattened kickstart file to OUTFILE, or stdout if no filename is given. -v, --version VERSION Use this version of kickstart syntax when processing the file, or the latest if no version is given. SEE ALSO
ksvalidator (1), ksverdiff (1) KSSHELL(1)
Man Page

14 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script help for INFILE...

Hello all, I'm having trouble trying to get the output of a variable passed from an INFILE. Here is what i have so far. /tmp/INFILE --- inside INFILE will be 2 or more filenames like so /apps/opt/FTTP_`date '+%m%d%y'`.txt /apps/opt/DSLFeed.`date '+%m%d%y'`.txt --Here is just a... (2 Replies)
Discussion started by: liketheshell
2 Replies

2. Shell Programming and Scripting

Output report

Hi All, I got an output after executing oracle query in unix mechine. While executing the query the output it should automatically store in a table Query:- 1. i am expected an report for the output. 2. How the output it will automatically store in an table. Is there script available... (1 Reply)
Discussion started by: ravi gongati
1 Replies

3. UNIX for Dummies Questions & Answers

Hi..Need help..

Hi, Please help me. This script is responsible of storing all the report in a line. penfilename=`echo ${OUTFILE}*"(${daterange})".csv` OUTFILE=${OUT_DIR}"/PenetrationReport" and the OUT_DIR is this - OUT_DIR=${MMHOME}/data/preticketing/penrpt. The example of the generated report... (1 Reply)
Discussion started by: chrysSty
1 Replies

4. Programming

Changing STDOUT during runtime

Hi, Currently my STDOUT is configured as tty0, Is there a way to change it during runtime? I need to use this serial for other external device Thanks, Alex (2 Replies)
Discussion started by: alex889
2 Replies

5. Shell Programming and Scripting

trimming sequences

My file looks like this: But I would like to 'trim' all sequences to the same lenght 32 characters, keeping intact all the identifier (>GHXCZCC01AJ8CJ) Would it be possible to use awk to perform this task? (2 Replies)
Discussion started by: Xterra
2 Replies

6. Shell Programming and Scripting

redirect STDOUT to a file in a subshell

Hi, I would like to avoid re-directing line by line to a file. What is the best way to re-direct STDOUT to a file in a subshell? Thanks in advance. Cheers Vj (1 Reply)
Discussion started by: tnvee
1 Replies

7. Shell Programming and Scripting

STDOUT and STDERR redirection within a script

Hello all, I have a for loop executing in a script that I want to redirect STDOUT to screen and to file, while directing STDERR to the bit bucket. Here is the general sentax of what I'm doing: for i in thingy do some_command ${i} done 1>&1 | tee ${LOGFILE} 2> /dev/null What I am... (2 Replies)
Discussion started by: LinuxRacr
2 Replies

8. UNIX for Dummies Questions & Answers

STDIN and STDOUT

Hallo, i have a script like: if ;then echo "OK" else echo "ERROR $2 is missing" fi; if ;then touch $2 fi; if ;then cat $1 | grep xy > $2 (1 Reply)
Discussion started by: eightball
1 Replies

9. Shell Programming and Scripting

String Manipulation ${no.} meaning

File name is INFILE="ABC_BMWPPI_20120909_00073.DAT.ASDFGHJK" -> 44 character long mv INFILE GEPB_${INFILE:${#INFILE}-27:15}dat result is GEPB_20120909_00073.DAT. I am confused in how we get it. If I evaluate 1- GEPB_${INFILE:${#INFILE}-27:15}dat 2- GEPB_${INFILE:${44}-27:15}dat 3-... (2 Replies)
Discussion started by: vineesh
2 Replies

10. Shell Programming and Scripting

Redirect STDOUT & STDERR to file and then on screen

Dear all, redirecting STDOUT & STDERR to file is quite simple, I'm currently using: exec 1>>/tmp/tmp.log; exec 2>>/tmp/tmp.logBut during script execution I would like the output come back again to screen, how to do that? Thanks Lucas (4 Replies)
Discussion started by: Lord Spectre
4 Replies

11. Shell Programming and Scripting

Redirecting STDERR to file and screen, STDOUT only to file

I have to redirect STDERR messages both to screen and also capture the same in a file but STDOUT only to the same file. I have searched in this formum for a solution, but something like srcipt 3>&1 >&2 2>&3 3>&- | tee errs doesn't work for me... Has anyone an idea??? (18 Replies)
Discussion started by: thuranga
18 Replies

12. UNIX for Dummies Questions & Answers

Redirection creates empty file

I'm using a script that does some modifications to data on disc and updates the database. The script (perl) uses STDOUT so the results are printed to the screen. I don't have permissions to modify the script. I want to capture the results in a file so I can see if errors occurred and also keep... (3 Replies)
Discussion started by: surib
3 Replies

13. UNIX for Dummies Questions & Answers

Eliminating entries based on relative values

I have posted this before but did not get much feedback. So I will try again. I need to remove sequences from a file based on values listed on a second file. The sequences file looks like this: Sequences.txt >Sample1 Freq 59 ggatatgatgatgaactggt >Sample1 Freq 54 ggatatgatgttgaactggt... (4 Replies)
Discussion started by: Xterra
4 Replies

14. Shell Programming and Scripting

Outputting sequences based on length with sed

I have this file: >ID1 AA >ID2 TTTTTT >ID-3 AAAAAAAAA >ID4 TTTTTTGGAGATCAGTAGCAGATGACAG-GGGGG-TGCACCCC Add I am trying to use this script to output sequences longer than 15 characters: sed -r '/^>/N;{/^.{,15}$/d}' The desire output would be this: >ID4... (8 Replies)
Discussion started by: Xterra
8 Replies