# HG changeset patch # User yhoogstrate # Date 1391765678 18000 # Node ID 344459d8f3d4c14389523936f8f7bf198bdd4548 # Parent 00caf096ddbb8058bff04c51a0f1bd209800a8b4 Deleted selected files diff -r 00caf096ddbb -r 344459d8f3d4 featureCounts.xml --- a/featureCounts.xml Wed Jan 15 07:59:01 2014 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,138 +0,0 @@ - - - Count reads aligned to (valid GTF/GFF) annotated genes in a reference genome from SAM or BAM files. - - featurecounts_valid_gff - - - - featureCounts - -a $input_annotation - -o $output - - #if $alignments[0].file.extension == "bam" - -b - #end if - - #if $extended_parameters.parameters == "extended" - -t $extended_parameters.gff_feature_type - -g $extended_parameters.gff_feature_attribute - $extended_parameters.summarization_level - $extended_parameters.contribute_to_multiple_features - $extended_parameters.protocol - -Q $extended_parameters.mapping_quality - -T $extended_parameters.threads - $extended_parameters.fragment_counting - $extended_parameters.check_distance - -d $extended_parameters.minimum_fragment_length - -D $extended_parameters.maximum_fragment_length - $extended_parameters.only_both_ends - $extended_parameters.exclude_chimerics - $extended_parameters.namesort - #end if - - #for $alignment in $alignments - ${alignment.file} - #end for - - 2>&1 - - - - #if $format == "tabdel_default" or $format.value == "tabdel_default" - ; cp $output tmp.txt - ; egrep -v "^#" tmp.txt > tmp2.txt - ; cut -f 1,7 tmp2.txt > tmp_left.txt - ; cut -f 6 tmp2.txt > tmp_right.txt - ; paste tmp_left.txt tmp_right.txt > $output - - #elif $format == "tabdel_short" or $format.value == "tabdel_short" - ; cp $output tmp.txt - ; egrep -v "^#" tmp.txt | cut -f 1,7 > $output - - #end if - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -featureCounts-valid-gff: - This application count reads aligned to annotated genes in a reference genome from SAM or BAM files. - This is similar to tools like DEXSeq-count, HTSeq-count, etc. - The tool is written in pure C, without the requirement of third party sorting software. - Therefore this tool is incredibly fast and takes about 7 minutes on a single average CPU for a 10GB alignment to a Homo Sapiens genome! - - --- - - Remark that this is a fork of the original "featureCounts" package, which can be found at: - http://subread.sourceforge.net/ - - --- - - This fork is able to read GTF/GFF files according to the provided standard by Ensembl, which can be found at: - http://www.ensembl.org/info/website/upload/gff.html - The fork is maintained by: Youri Hoogstrate - -