# HG changeset patch # User yhoogstrate # Date 1449675783 18000 # Node ID 5d38abf7e4b6b491fb9a551680e2daa3e3ea7d31 # Parent 12fb0d4b1e931bd048e7823614b2229c54b2a2bc planemo upload for repository https://bitbucket.org/EMCbioinf/galaxy-tool-shed-tools/raw/master/edger_with_design_matrix commit e42aebc7a9b64744919668cb9a856b5df8a61387 diff -r 12fb0d4b1e93 -r 5d38abf7e4b6 edgeR_Differential_Gene_Expression.xml --- a/edgeR_Differential_Gene_Expression.xml Thu Sep 03 09:42:12 2015 -0400 +++ b/edgeR_Differential_Gene_Expression.xml Wed Dec 09 10:43:03 2015 -0500 @@ -190,8 +190,9 @@ ## Filter for HTSeq predifined counts: exclude_HTSeq <- c("no_feature","ambiguous","too_low_aQual","not_aligned","alignment_not_unique") exclude_DEXSeq <- c("_ambiguous","_empty","_lowaqual","_notaligned") +exclude_STAR <- c("N_unmapped", "N_multimapping", "N_noFeature", "N_ambiguous") -exclude <- match(c(exclude_HTSeq, exclude_DEXSeq),rownames(read_counts)) +exclude <- match(c(exclude_HTSeq, exclude_DEXSeq, exclude_STAR),rownames(read_counts)) exclude <- exclude[is.na(exclude)==0] if(length(exclude) != 0) { read_counts <- read_counts[-exclude,]