Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

picard-tools(1) [debian man page]

picard-tools(1) 						   User Commands						   picard-tools(1)

NAME
picard-tools - manipulate SAM and BAM files SYNOPSIS
picard-tools COMMAND [OPTION]... DESCRIPTION
SAM (Sequence Alignment/Map) format is a generic format for storing large nucleotide sequence alignments. Picard Tools includes these utilities to manipulate SAM and BAM files: AddOrReplaceReadGroups BamIndexStats BamToBfq BuildBamIndex CalculateHsMetrics CleanSam CollectAlignmentSummaryMetrics CollectGcBiasMetrics CollectInsertSizeMetrics CollectMultipleMetrics CollectRnaSeqMetrics CompareSAMs CreateSequenceDictionary ExtractIlluminaBarcodes EstimateLibraryComplexity ExtractSequences FastqToSam FixMateInformation IlluminaBasecallsToSam MarkDuplicates MeanQualityByCycle MergeBamAlignment MergeSamFiles NormalizeFasta QualityScoreDistribution ReorderSam ReplaceSamHeader RevertSam SamFormatConverter SamToFastq SortSam ValidateSamFile ViewSam REPORTING BUGS
samtools-devel@lists.sourceforge.net COPYRIGHT
Copyright 2010 The Broad Institute SEE ALSO
http://picard.sourceforge.net/ picard-tools 1.27 July 2010 picard-tools(1)

Check Out this Related Man Page

docidx_lang_faq(n)						Documentation tools						docidx_lang_faq(n)

__________________________________________________________________________________________________________________________________________________

NAME
docidx_lang_faq - docidx language faq DESCRIPTION
OVERVIEW
WHAT IS THIS DOCUMENT? This document is currently mainly a placeholder, to be filled with commonly asked questions about the docidx markup language and compan- ions, and their answers. Please report any questions (and, if possible, answers) we should consider for this document in the category doctools of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. EXAMPLES
WHERE DO I FIND DOCIDX EXAMPLES? We have no direct examples of documents written using docidx markup. However the doctools processor dtplite does generate keyword indices when processing a set of documents written in doctools markup. The intermediate files use docidx markup and are not deleted when generation completes. These files can therefore serve as examples. dtplite is distributed as part of Tcllib, so to get it you need one of [1] A CVS snapshot of Tcllib. How to retrieve such a snapshot and the tools required for this are described at http://source- forge.net/cvs/?group_id=12883 [2] A Tcllib release archive. They are available at http://sourceforge.net/project/showfiles.php?group_id=12883 BUGS, IDEAS, FEEDBACK This document, will undoubtedly contain bugs and other problems. Please report any such in the category doctools of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either the package and/or the documentation. SEE ALSO
docidx_lang_cmdref, docidx_lang_intro, docidx_lang_syntax KEYWORDS
docidx commands, docidx language, docidx markup, docidx syntax, examples, faq, markup, semantic markup CATEGORY
Documentation tools COPYRIGHT
Copyright (c) 2007 Andreas Kupries <andreas_kupries@users.sourceforge.net> doctools 1.0 docidx_lang_faq(n)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

perl: Command works in terminal, but not in shell script

Hi, the following command works in the terminal no problem. samtools view -h rawlib.bam | perl -ne '{ @line = split( /\s+/ ); $match = 0; while( $line =~ /(\d+)M/g ) { $match = $match + $1 } if( $match >= 80 || $_ =~ /^\@/ ) { print $_ } }' | java -Xmx12G -jar... (8 Replies)
Discussion started by: jdilts
8 Replies

2. Fedora

.bashrc in Ubuntu 14.04

I am getting this: cmccabe@DTV-A5211QLM:~$ cat ~/.bashrc Command 'cat' is available in '/bin/cat' The command could not be located because '/bin' is not included in the PATH environment variable. cat: command not found cmccabe@DTV-A5211QLM:~$ nano .bashrc Command 'nano' is available in... (9 Replies)
Discussion started by: cmccabe
9 Replies

3. Shell Programming and Scripting

awk to add value and text to specific lines

In the awk I have a very large tab-delimeted file that I am trying to extract the DP= value put it in $16 and add specific text to $16 with . (dot) in $11-$15 and $18. Only the lines (there are several) that have the formating below in file will have an empty $16. Other lines will be in a... (6 Replies)
Discussion started by: cmccabe
6 Replies

4. Shell Programming and Scripting

Controlling user input

I'm trying to use a bash script for a psych experiment that involves listening to sound files and responding. If I have something like the code below, how can I make sure that a key press is assigned to RESPONSE only after the second echo statement? for i in 1 2 3; do echo "Ready?" sleep 2 ... (10 Replies)
Discussion started by: darwin_886
10 Replies