# HG changeset patch # User nilesh # Date 1372290230 14400 # Node ID 258c2fd22b44063a17f6902465810d56b56b4c3c # Parent 7b97a8f8ba3da123263d356543c3f7df0a3081e4 Deleted selected files diff -r 7b97a8f8ba3d -r 258c2fd22b44 fastqvalidator.xml --- a/fastqvalidator.xml Wed Jun 26 19:21:13 2013 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,108 +0,0 @@ - - for each sequence in a file - - FQVAL_SCRIPT_PATH - FASTQ_Validator - - \$FQVAL_SCRIPT_PATH/fastQValidator --file $input --minReadLen $minReadLen --maxErrors $maxErrors --printableErrors $printableErrors $baseComposition $disableSeqIDCheck $quiet $avgQual $spacetype $params > $output - - - - - - - - - - - - - - - - - - - - - -About -+++++ - -The fastQValidator validates the format of fastq files. -The initial version of a FASTQ Validator is complete. It was built using LibStatGen: FASTQ which is part of the libStatGen library. - - -Info on Errors -++++++++++++++ - -Number of Errors to allow (default+-1): - Number of errors to allow before quitting reading/validating the file. -1 (default) indicates to not quit until the entire file is read. 0 indicates not to read/validate anything. - -Max errors to print before suppressing (defualt+20): - Maximum number of errors to print before suppressing them (Defaults to 20). Different than maxErrors since printableErrors will continue reading and validating the file until the end, but just doesn't print the errors. - -**Info on Space Options for Raw Sequence** - auto: Determine baseSpace/colorSpace from the Raw Sequence in the file (Default) - baseSpace: ACTGN only - colorSpace: 0123. only (with 1 character primer base) - - -Output -++++++ - -When running the fastQValidator Executable, if the --params option is specified, the output starts with a summary of the parameters:: - - ============================================================================= - The following parameters are available. Ones with "[]" are in effect:: - - Input Parameters - --file [../fastqValidator/test/testFile.txt], --baseComposition, - --disableSeqIDCheck, --quiet, --params [ON], --minReadLen [10], - --maxErrors [-1] - Space Type : --baseSpace, --colorSpace, --auto [ON] - Errors : --ignoreErrors, --printableErrors [20] - ============================================================================= - -The Validator Executable outputs error messages for invalid sequences based on Validation Criteria. For Example: :: - - ====================================================================== - ERROR on Line 25: The sequence identifier line was too short. - ERROR on Line 29: First line of a sequence does not begin wtih @ - ERROR on Line 33: No Sequence Identifier specified before the comment. - ====================================================================== - -Base Composition Percentages by Index are printed if --printBaseComp is set to ON. For Example: :: - - ======================================================================== - Base Composition Statistics: - Read Index %A %C %G %T %N Total Reads At Index - 0 100.00 0.00 0.00 0.00 0.00 20 - 1 5.00 95.00 0.00 0.00 0.00 20 - 2 5.00 0.00 5.00 90.00 0.00 20 - ======================================================================== - -Phred Quality by Index are printed if --avgQual is set to ON in a version after May 29, 2012. Only valid qualities are included in these averages. For Example:: - - ================================================== - Average Phred Quality by Read Index (starts at 0): - Read Index Average Quality - 0 44.10 - 1 45.55 - 2 51.11 - 3 47.68 - 4 47.37 - - Overall Average Phred Quality = 50.40 - ================================================== - -Summary of the number of lines, sequences, and errors: :: - - ======================================================================= - Finished processing testFile.txt with 92 lines containing 20 sequences. - There were a total of 17 errors. - ======================================================================= - - - - \ No newline at end of file diff -r 7b97a8f8ba3d -r 258c2fd22b44 tool_dependencies.xml --- a/tool_dependencies.xml Wed Jun 26 19:21:13 2013 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ - - - - $REPOSITORY_INSTALL_DIR - - - - - http://genome.sph.umich.edu/w/images/2/20/FastQValidatorLibStatGen.0.1.1a.tgz - make all - - $INSTALL_DIR/bin - - - - - View the FastQ Validator overview at http://genome.sph.umich.edu/wiki/FastQValidator. - - - -