# HG changeset patch # User Matt Shirley # Date 1375672673 14400 # Node ID a0925f507352fddaabd15b08c5a4679077e41942 # Parent 4da2d7f0128e25a185b4baea4ddc8e8c6882a55c bring pileup to parity with sam; fixed minMapq for sam diff -r 4da2d7f0128e -r a0925f507352 sam_dump.xml --- a/sam_dump.xml Thu Aug 01 13:57:27 2013 -0400 +++ b/sam_dump.xml Sun Aug 04 23:17:53 2013 -0400 @@ -1,4 +1,4 @@ - + in SAM format from NCBI SRA. sam-dump --log-level fatal @@ -8,6 +8,9 @@ #if str( $matepairDist ) != "": --matepair-distance $matepairDist #end if + #if str( $minMapq ) != "": + --minmapq $minMapq + #end if #if $header == "yes": --header #else: diff -r 4da2d7f0128e -r a0925f507352 sra_pileup.xml --- a/sra_pileup.xml Thu Aug 01 13:57:27 2013 -0400 +++ b/sra_pileup.xml Sun Aug 04 23:17:53 2013 -0400 @@ -1,18 +1,42 @@ - + from NCBI sra. - sra-pileup '$input' > $output + sra-pileup --log-level fatal + #if str( $region ) != "": + --aligned-region $region + #end if + #if str( $minMapq ) != "": + --minmapq $minMapq + #end if + #if $input.input_select == "file": + $input.file + #else: + $input.accession + #end if + > $output sra-pileup --version - + + + + + + + + + + + + + + - + sra_toolkit - !!! Note that this tool does not function correctly !!! This tool produces pileup format from sra archives using sra-pileup. The sra-pileup program is developed at NCBI, and is available at: http://www.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=software. Contact Matt Shirley at mdshw5@gmail.com for support and bug reports.