Repository 'featurecounts'
hg clone https://toolshed.g2.bx.psu.edu/repos/iuc/featurecounts

Changeset 10:46cccc52be5f (2018-01-14)
Previous changeset 9:e6a2a912677a (2017-11-17) Next changeset 11:e803ca6407c0 (2018-03-16)
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts commit cf1ae941d02bff8848f05c4e4039457656e3a4e8
modified:
featurecounts.xml
added:
test-data/output_1_jcounts_with_header.tab
test-data/output_1_short_with_header.tab
test-data/output_1_summary_with_header.tab
test-data/output_builtin_hg19.tab
test-data/output_summary_builtin_hg19.tab
test-data/pairend_strandspecific_51mer_hg19_chr1_1-100000.bam
b
diff -r e6a2a912677a -r 46cccc52be5f featurecounts.xml
--- a/featurecounts.xml Fri Nov 17 06:02:56 2017 -0500
+++ b/featurecounts.xml Sun Jan 14 09:23:49 2018 -0500
[
b'@@ -1,17 +1,27 @@\n-<tool id="featurecounts" name="featureCounts" version="1.6.0.1" profile="16.04">\n+<tool id="featurecounts" name="featureCounts" version="1.6.0.2" profile="16.04">\n     <description>Measure gene expression in RNA-Seq experiments from SAM or BAM files.</description>\n     <requirements>\n         <requirement type="package" version="1.6.0">subread</requirement>\n     </requirements>\n \n     <version_command>featureCounts -v 2&gt;&amp;1 | grep .</version_command>\n-    <command><![CDATA[\n+    <command detect_errors="exit_code"><![CDATA[\n+        ## Export fc path for its built-in annotation\n+        export FC_PATH=\\$(command -v featureCounts | sed \'s@/bin/featureCounts$@@\') &&\n+\n         ## Check whether all alignments are from the same type (bam || sam)\n         featureCounts\n-            #if $gtf_source.ref_source=="history":\n-                -a \'$gtf_source.reference_gene_sets\'\n-            #else:\n-                -a \'$gtf_source.reference_gene_sets_builtin.fields.path\'\n+\n+            #if $anno.anno_select=="gtf":\n+                #if $anno.gtf_source.ref_source=="history":\n+                    -a \'$anno.gtf_source.reference_gene_sets\'\n+                #else:\n+                    -a \'$anno.gtf_source.reference_gene_sets_builtin.fields.path\'\n+                #end if\n+                -F "GTF"\n+            #elif $anno.anno_select=="builtin":\n+                -a \\${FC_PATH}/annotation/${anno.genome}_RefSeq_exon.txt\n+                -F "SAF"\n             #end if\n \n             -o "output"\n@@ -24,13 +34,13 @@\n             -s  $extended_parameters.strand_specificity\n                 $extended_parameters.multimapping_enabled.multimapping_counts\n \n-                #if str($extended_parameters.multimapping_enabled.multimapping_counts) == " -M"\n+                #if str($extended_parameters.multimapping_enabled.multimapping_counts) == " -M":\n                     $extended_parameters.multimapping_enabled.fraction\n                 #end if\n \n                 $extended_parameters.exon_exon_junction_read_counting_enabled.count_exon_exon_junction_reads\n-                #if str($extended_parameters.exon_exon_junction_read_counting_enabled.count_exon_exon_junction_reads) == "-J"\n-                    #if $extended_parameters.exon_exon_junction_read_counting_enabled.genome\n+                #if str($extended_parameters.exon_exon_junction_read_counting_enabled.count_exon_exon_junction_reads) == "-J":\n+                    #if $extended_parameters.exon_exon_junction_read_counting_enabled.genome:\n                         -G \'$extended_parameters.exon_exon_junction_read_counting_enabled.genome\'\n                     #end if\n                 #end if\n@@ -48,18 +58,18 @@\n                 $extended_parameters.primary\n                 $extended_parameters.ignore_dup\n \n-                #if str($extended_parameters.read_extension_5p) != "0"\n+                #if str($extended_parameters.read_extension_5p) != "0":\n                     --readExtension5 $extended_parameters.read_extension_5p\n                 #end if\n \n-                #if str($extended_parameters.read_extension_3p) != "0"\n+                #if str($extended_parameters.read_extension_3p) != "0":\n                     --readExtension3 $extended_parameters.read_extension_3p\n                 #end if\n \n                 $pe_parameters.fragment_counting_enabled.fragment_counting\n-                #if str($pe_parameters.fragment_counting_enabled.fragment_counting) == " -p"\n+                #if str($pe_parameters.fragment_counting_enabled.fragment_counting) == " -p":\n                     $pe_parameters.fragment_counting_enabled.check_distance_enabled.check_distance\n-                    #if str($pe_parameters.fragment_counting_enabled.check_distance_enabled.check_distance) == " -P"\n+                    #if str($pe_parameters.fragment_counting_enabled.check_distance_enabled.check_distance) == " -P":\n                         -d $pe_parameters.fragment_counting_enabled.check_distance_enabled.minimum_'..b'" />\n             <param name="format" value="tabdel_full" />\n             <param name="include_feature_length_file" value="true"/>\n@@ -479,7 +523,35 @@\n                 <metadata name="column_names" value="Feature,Length"/>\n             </output>\n         </test>\n-\n+        <test expect_num_outputs="4">\n+            <param name="alignment" value="featureCounts_input1.bam" ftype="bam" />\n+            <param name="anno_select" value="gtf"/>\n+            <param name="reference_gene_sets" value="featureCounts_guide.gff" ftype="gff" />\n+            <param name="format" value="tabdel_short" />\n+            <param name="include_feature_length_file" value="true"/>\n+            <param name="ref_source" value="history" />\n+            <param name="count_exon_exon_junction_reads" value="-J"/>\n+            <output name="output_short" file="output_1_short_with_header.tab">\n+                <metadata name="column_names" value="Geneid,featureCounts_input1.bam"/>\n+            </output>\n+            <output name="output_summary" file="output_1_summary_with_header.tab">\n+                <metadata name="column_names" value="Status,featureCounts_input1.bam"/>\n+            </output>\n+            <output name="output_jcounts" file="output_1_jcounts_with_header.tab">\n+                <metadata name="column_names" value="PrimaryGene,SecondaryGene,Site1_chr,Site1_location,Site1_strand,Site2_chr,Site2_location,Site2_strand,featureCounts_input1.bam"/>\n+            </output>\n+        </test>\n+        <!-- Ensure built-in annotation works -->\n+        <test expect_num_outputs="2">\n+            <param name="alignment" value="pairend_strandspecific_51mer_hg19_chr1_1-100000.bam" ftype="bam" />\n+            <param name="anno_select" value="builtin"/>\n+            <param name="format" value="tabdel_short" />\n+            <param name="genome" value="hg19" />\n+            <output name="output_short" file="output_builtin_hg19.tab">\n+                <metadata name="column_names" value="Geneid,pairend_strandspecific_51mer_hg19_chr1_1-100000.bam"/>\n+            </output>\n+            <output name="output_summary" file="output_summary_builtin_hg19.tab"/>\n+        </test>\n     </tests>\n \n     <help><![CDATA[\n@@ -488,7 +560,7 @@\n \n Overview\n --------\n-FeatureCounts is a light-weight read counting program written entirely in the C programming language. It can be used to count both gDNA-seq and RNA-seq reads for genomic features in in SAM/BAM files.\n+FeatureCounts is a light-weight read counting program written entirely in the C programming language. It can be used to count both gDNA-seq and RNA-seq reads for genomic features in in SAM/BAM files. FeatureCounts is part of the Subread_ package.\n \n Input formats\n -------------\n@@ -497,14 +569,18 @@\n  - SAM format, http://samtools.sourceforge.net/samtools.shtml#5\n  - BAM format\n \n-Gene regions should be provided in the GFF/GTF format:\n+Annotations for gene regions should be provided in the GFF/GTF format:\n \n  - http://genome.ucsc.edu/FAQ/FAQformat.html#format3\n  - http://www.ensembl.org/info/website/upload/gff.html\n \n+Alternatively, the featureCounts built-in annotations for genomes hg38, hg19, mm10 and mm9 can be used through selecting the built-in option above. These annotations were downloaded from NCBI RefSeq database and then adapted by merging overlapping exons from the same gene to form a set of disjoint exons for each gene. Genes with the same Entrez gene identifiers were also merged into one gene. See the Subread_ User\'s Guide for more information.\n+\n Output format\n -------------\n FeatureCounts produces a table containing counted reads, per gene, per row. Optionally the last column can be set to be the effective gene-length. These tables are compatible with the DESeq2 Galaxy wrapper by IUC. Column names are added as metadata object.\n+\n+.. _Subread: http://bioinf.wehi.edu.au/subread-package/SubreadUsersGuide.pdf\n     ]]></help>\n     <citations>\n         <citation type="doi">10.1093/bioinformatics/btt656</citation>\n'
b
diff -r e6a2a912677a -r 46cccc52be5f test-data/output_1_jcounts_with_header.tab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_1_jcounts_with_header.tab Sun Jan 14 09:23:49 2018 -0500
b
@@ -0,0 +1,1 @@
+PrimaryGene SecondaryGenes Site1_chr Site1_location Site1_strand Site2_chr Site2_location Site2_strand featureCounts_input1.bam
\ No newline at end of file
b
diff -r e6a2a912677a -r 46cccc52be5f test-data/output_1_short_with_header.tab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_1_short_with_header.tab Sun Jan 14 09:23:49 2018 -0500
b
@@ -0,0 +1,3 @@
+Geneid featureCounts_input1.bam
+left 92
+right 66
b
diff -r e6a2a912677a -r 46cccc52be5f test-data/output_1_summary_with_header.tab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_1_summary_with_header.tab Sun Jan 14 09:23:49 2018 -0500
b
@@ -0,0 +1,13 @@
+Status featureCounts_input1.bam
+Assigned 158
+Unassigned_Unmapped 0
+Unassigned_MappingQuality 0
+Unassigned_Chimera 0
+Unassigned_FragmentLength 0
+Unassigned_Duplicate 0
+Unassigned_MultiMapping 0
+Unassigned_Secondary 0
+Unassigned_Nonjunction 0
+Unassigned_NoFeatures 6078
+Unassigned_Overlapping_Length 0
+Unassigned_Ambiguity 0
b
diff -r e6a2a912677a -r 46cccc52be5f test-data/output_builtin_hg19.tab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_builtin_hg19.tab Sun Jan 14 09:23:49 2018 -0500
b
b'@@ -0,0 +1,25703 @@\n+Geneid\tpairend_strandspecific_51mer_hg19_chr1_1-100000.bam\n+653635\t3\n+100422834\t0\n+645520\t0\n+79501\t0\n+729737\t0\n+100507658\t0\n+100132287\t0\n+100288646\t0\n+729759\t0\n+100131754\t0\n+81399\t0\n+100287654\t0\n+100133331\t0\n+100288069\t0\n+100287934\t0\n+400728\t0\n+79854\t0\n+643837\t0\n+100506327\t0\n+284593\t0\n+284600\t0\n+100130417\t0\n+148398\t0\n+26155\t0\n+339451\t0\n+84069\t0\n+84808\t0\n+57801\t0\n+9636\t0\n+375790\t0\n+401934\t0\n+54991\t0\n+406984\t0\n+406983\t0\n+554210\t0\n+100506376\t0\n+254173\t0\n+8784\t0\n+7293\t0\n+51150\t0\n+126792\t0\n+388581\t0\n+118424\t0\n+6339\t0\n+116983\t0\n+126789\t0\n+54973\t0\n+80772\t0\n+83756\t0\n+1855\t0\n+54587\t0\n+100506404\t0\n+54998\t0\n+81669\t0\n+148413\t0\n+55052\t0\n+441869\t0\n+643965\t0\n+100288271\t0\n+64856\t0\n+219293\t0\n+83858\t0\n+55210\t0\n+339453\t0\n+29101\t0\n+643988\t0\n+142678\t0\n+8510\t0\n+984\t0\n+728661\t0\n+8511\t0\n+728642\t0\n+100506482\t0\n+9906\t0\n+65220\t0\n+2782\t0\n+163688\t0\n+339456\t0\n+85452\t0\n+2563\t0\n+5590\t0\n+100506504\t0\n+199990\t0\n+100128003\t0\n+6497\t0\n+79906\t0\n+100129534\t0\n+11079\t0\n+5192\t0\n+9651\t0\n+55229\t0\n+388585\t0\n+115110\t0\n+100133445\t0\n+8764\t0\n+100506589\t0\n+127281\t0\n+79258\t0\n+100287898\t0\n+140625\t0\n+440556\t0\n+63976\t0\n+100422968\t0\n+27237\t0\n+1953\t0\n+693135\t0\n+127262\t0\n+49856\t0\n+7161\t0\n+100506635\t0\n+57212\t0\n+148870\t0\n+388588\t0\n+57470\t0\n+9731\t0\n+1677\t0\n+339448\t0\n+100133612\t0\n+728716\t0\n+284661\t0\n+55966\t0\n+261734\t0\n+8514\t0\n+26038\t0\n+6146\t0\n+388591\t0\n+23463\t0\n+148645\t0\n+390992\t0\n+387509\t0\n+11332\t0\n+100130071\t0\n+54626\t0\n+83715\t0\n+100422975\t0\n+8718\t0\n+57449\t0\n+79707\t0\n+80835\t0\n+3104\t0\n+9903\t0\n+148479\t0\n+90326\t0\n+55735\t0\n+100505887\t0\n+23261\t0\n+100505935\t0\n+100505910\t0\n+9341\t0\n+8863\t0\n+10911\t0\n+3604\t0\n+11315\t0\n+54206\t0\n+50651\t0\n+473\t0\n+100505990\t0\n+2023\t0\n+100505975\t0\n+765\t0\n+155184\t0\n+6518\t0\n+100302218\t0\n+80045\t0\n+407040\t0\n+727721\t0\n+9563\t0\n+80176\t0\n+100506022\t0\n+84275\t0\n+199953\t0\n+5293\t0\n+644997\t0\n+22883\t0\n+645010\t0\n+56998\t0\n+84328\t0\n+64802\t0\n+116362\t0\n+10277\t0\n+23095\t0\n+100287506\t0\n+5226\t0\n+378708\t0\n+1325\t0\n+1676\t0\n+5195\t0\n+54897\t0\n+148345\t0\n+23435\t0\n+10747\t0\n+6723\t0\n+5394\t0\n+2475\t0\n+10218\t0\n+29914\t0\n+57540\t0\n+26232\t0\n+93611\t0\n+26270\t0\n+10459\t0\n+374946\t0\n+100506086\t0\n+57085\t0\n+100506273\t0\n+284498\t0\n+100506310\t0\n+100506116\t0\n+4524\t0\n+1185\t0\n+4878\t0\n+4879\t0\n+26829\t0\n+90231\t0\n+5351\t0\n+9927\t0\n+60672\t0\n+943\t0\n+7133\t0\n+55187\t0\n+677885\t0\n+9249\t0\n+343066\t0\n+126767\t0\n+93190\t0\n+390999\t0\n+65121\t0\n+440560\t0\n+343069\t0\n+65122\t0\n+400735\t0\n+343071\t0\n+441871\t0\n+440561\t0\n+653606\t0\n+729368\t0\n+441873\t0\n+440563\t0\n+645359\t0\n+401940\t0\n+343068\t0\n+391002\t0\n+343070\t0\n+400736\t0\n+391003\t0\n+654348\t0\n+391001\t0\n+729516\t0\n+653619\t0\n+729528\t0\n+645414\t0\n+391004\t0\n+645425\t0\n+126755\t0\n+10630\t0\n+7799\t0\n+23254\t0\n+200197\t0\n+55092\t0\n+114827\t0\n+79180\t0\n+11330\t0\n+63036\t0\n+51032\t0\n+842\t0\n+23341\t0\n+100507192\t0\n+79814\t0\n+645317\t0\n+84301\t0\n+6248\t0\n+23207\t0\n+284723\t0\n+388595\t0\n+54751\t0\n+440567\t0\n+729614\t0\n+23013\t0\n+7709\t0\n+149563\t0\n+27129\t0\n+1187\t0\n+1188\t0\n+348487\t0\n+1969\t0\n+100506484\t0\n+128272\t0\n+79363\t0\n+54455\t0\n+26099\t0\n+374955\t0\n+55707\t0\n+114819\t0\n+26871\t0\n+100506533\t0\n+100133301\t0\n+55672\t0\n+84809\t0\n+11209\t0\n+26869\t0\n+729574\t0\n+284729\t0\n+729587\t0\n+6060\t0\n+11223\t0\n+100506687\t0\n+26870\t0\n+9696\t0\n+4237\t0\n+23400\t0\n+6390\t0\n+11240\t0\n+400743\t0\n+29943\t0\n+51702\t0\n+23569\t0\n+353238\t0\n+55920\t0\n+55160\t0\n+81569\t0\n+84966\t0\n+127707\t0\n+5081\t0\n+80834\t0\n+8659\t0\n+100302276\t0\n+126917\t0\n+23352\t0\n+23065\t0\n+51154\t0\n+246181\t0\n+22977\t0\n+100506730\t0\n+8574\t0\n+54896\t0\n+832\t0\n+644075\t0\n+644083\t0\n+440574\t0\n+4681\t0\n+3362\t0\n+255104\t0\n+54546\t0\n+23252\t0\n+30814\t0\n+5320\t0\n+5322\t0\n+26279\t0\n+64600\t0\n+391013\t0\n+127733\t0\n+127731\t0\n+339505\t0\n+55450\t0\n+79594\t0\n+163933\t0\n+978\t0\n+65018\t0\n+1650\t0\n+57576\t0\n+400745\t0\n+50809\t0\n+8672\t0\n+100302155\t0\n+1889\t0\n+100506824\t0\n+100506801\t0\n+84224\t0\n+249\t0\n+5909\t0\n+84196\t0\n+401944\t0\n+3339\t0\n+23436\t0\n+10136\t0\n+29092\t0\n+998\t0\n+54361\t0\n+9923\t0\n+2046\t0\n+712\t0\n+714\t0\n+713\t0\n+2048\t0\n+100422914\t0\n+646262\t0\n+729059\t0\n+23028\t0\n+100422866\t0\n+7798\t0\n+3352\t0\n+10236\t0\n+80818\t0\n+148898\t0\n+6920\t0\n+55616\t0\n+1870\t0\n+3399\t0\n+259283\t0\n+729856\t0\n+6135\t0\n+6924\t0\n+100506963\t0\n+57095\t0\n+11313\t0\n+2582\t0\n+3155\t0\n+2517\t0\n+1269\t0\n+55629\t0\n+10'..b'\n+55609\t0\n+9016\t0\n+139760\t0\n+51634\t0\n+55855\t0\n+10495\t0\n+158763\t0\n+3547\t0\n+347468\t0\n+286467\t0\n+51765\t0\n+90167\t0\n+57826\t0\n+55796\t0\n+90161\t0\n+83844\t0\n+51270\t0\n+2239\t0\n+2719\t0\n+574031\t0\n+407049\t0\n+406981\t0\n+574032\t0\n+574033\t0\n+406899\t0\n+347475\t0\n+84295\t0\n+3251\t0\n+100126302\t0\n+554214\t0\n+574505\t0\n+664617\t0\n+84848\t0\n+574506\t0\n+494336\t0\n+100506757\t0\n+10761\t0\n+159090\t0\n+159091\t0\n+56180\t0\n+644538\t0\n+441518\t0\n+8933\t0\n+26071\t0\n+644596\t0\n+100129515\t0\n+100287728\t0\n+54967\t0\n+7626\t0\n+203523\t0\n+100506790\t0\n+399668\t0\n+203522\t0\n+644717\t0\n+100506814\t0\n+541466\t0\n+728911\t0\n+441519\t0\n+441520\t0\n+441521\t0\n+541465\t0\n+55511\t0\n+93380\t0\n+10479\t0\n+2273\t0\n+79649\t0\n+139378\t0\n+680\t0\n+27336\t0\n+51442\t0\n+100126324\t0\n+959\t0\n+9459\t0\n+27316\t0\n+26787\t0\n+100132625\t0\n+83550\t0\n+7547\t0\n+158696\t0\n+2258\t0\n+574507\t0\n+6719\t0\n+2158\t0\n+4168\t0\n+286410\t0\n+574508\t0\n+347487\t0\n+6658\t0\n+286411\t0\n+1038\t0\n+100302169\t0\n+100133171\t0\n+728695\t0\n+23641\t0\n+64663\t0\n+619455\t0\n+30014\t0\n+728712\t0\n+645188\t0\n+64648\t0\n+139081\t0\n+9947\t0\n+51438\t0\n+441525\t0\n+139067\t0\n+139065\t0\n+494119\t0\n+389898\t0\n+494118\t0\n+84631\t0\n+100506096\t0\n+9142\t0\n+100126303\t0\n+100126306\t0\n+100126342\t0\n+100126307\t0\n+100126304\t0\n+100126341\t0\n+100133053\t0\n+100129239\t0\n+100302114\t0\n+100313822\t0\n+574509\t0\n+574510\t0\n+574511\t0\n+574512\t0\n+574513\t0\n+100422847\t0\n+100126301\t0\n+100126337\t0\n+574514\t0\n+574515\t0\n+574516\t0\n+574518\t0\n+574517\t0\n+100126270\t0\n+2332\t0\n+158521\t0\n+2334\t0\n+3423\t0\n+100131434\t0\n+91966\t0\n+728269\t0\n+84548\t0\n+4110\t0\n+100506205\t0\n+100506234\t0\n+100506164\t0\n+4108\t0\n+4107\t0\n+100132460\t0\n+541578\t0\n+100272228\t0\n+100313839\t0\n+10046\t0\n+4534\t0\n+8776\t0\n+83692\t0\n+3149\t0\n+100422930\t0\n+9248\t0\n+203547\t0\n+139135\t0\n+79057\t0\n+89885\t0\n+1260\t0\n+100507199\t0\n+4103\t0\n+2564\t0\n+407009\t0\n+574412\t0\n+4104\t0\n+4109\t0\n+2556\t0\n+406897\t0\n+768215\t0\n+406898\t0\n+55879\t0\n+4105\t0\n+389903\t0\n+266740\t0\n+100130935\t0\n+4111\t0\n+158511\t0\n+4101\t0\n+728461\t0\n+4102\t0\n+1069\t0\n+50814\t0\n+7739\t0\n+114824\t0\n+29944\t0\n+100287428\t0\n+100287466\t0\n+84968\t0\n+100287500\t0\n+728307\t0\n+4100\t0\n+728317\t0\n+649201\t0\n+10838\t0\n+649238\t0\n+139735\t0\n+11219\t0\n+55559\t0\n+100507326\t0\n+100507352\t0\n+633\t0\n+492\t0\n+92002\t0\n+100507371\t0\n+1852\t0\n+139728\t0\n+6535\t0\n+10134\t0\n+215\t0\n+5365\t0\n+26576\t0\n+3421\t0\n+6748\t0\n+57595\t0\n+3897\t0\n+554\t0\n+393\t0\n+8260\t0\n+5973\t0\n+3054\t0\n+8269\t0\n+100422987\t0\n+100422877\t0\n+3654\t0\n+100313781\t0\n+4204\t0\n+5956\t0\n+2652\t0\n+728458\t0\n+1527\t0\n+8277\t0\n+2316\t0\n+2010\t0\n+100507387\t0\n+6134\t0\n+26778\t0\n+1774\t0\n+6901\t0\n+537\t0\n+2664\t0\n+9130\t0\n+55558\t0\n+8270\t0\n+8266\t0\n+8273\t0\n+60343\t0\n+2539\t0\n+8517\t0\n+100132967\t0\n+246100\t0\n+1485\t0\n+286967\t0\n+30848\t0\n+139716\t0\n+1736\t0\n+677817\t0\n+677835\t0\n+4354\t0\n+100132963\t0\n+2157\t0\n+474382\t0\n+8263\t0\n+100302111\t0\n+65991\t0\n+100272147\t0\n+4515\t0\n+79184\t0\n+7411\t0\n+116442\t0\n+1193\t0\n+474381\t0\n+474383\t0\n+100422985\t0\n+474384\t0\n+100422977\t0\n+83740\t0\n+100507404\t0\n+55217\t0\n+10251\t0\n+6845\t0\n+3581\t0\n+100128260\t0\n+100507676\t0\n+100132596\t0\n+6736\t0\n+6192\t0\n+7544\t0\n+100506003\t0\n+90655\t0\n+83259\t0\n+100101121\t0\n+64591\t0\n+100132932\t0\n+100101116\t0\n+100101117\t0\n+100101115\t0\n+246122\t0\n+100101118\t0\n+100132124\t0\n+266\t0\n+90665\t0\n+5616\t0\n+252948\t0\n+83867\t0\n+252950\t0\n+252952\t0\n+83866\t0\n+286557\t0\n+252951\t0\n+728395\t0\n+100287798\t0\n+728403\t0\n+100287826\t0\n+100287859\t0\n+728137\t0\n+100289150\t0\n+7258\t0\n+100289188\t0\n+100132506\t0\n+252946\t0\n+100289087\t0\n+100289265\t0\n+64593\t0\n+84673\t0\n+100101120\t0\n+252953\t0\n+60439\t0\n+50858\t0\n+252954\t0\n+252955\t0\n+352887\t0\n+64595\t0\n+8287\t0\n+8653\t0\n+7404\t0\n+9087\t0\n+353513\t0\n+9084\t0\n+22829\t0\n+340618\t0\n+401629\t0\n+9082\t0\n+203611\t0\n+9426\t0\n+353515\t0\n+401630\t0\n+100302526\t0\n+86614\t0\n+425057\t0\n+83864\t0\n+159119\t0\n+55410\t0\n+100133941\t0\n+83869\t0\n+286554\t0\n+246126\t0\n+84663\t0\n+8284\t0\n+246119\t0\n+9086\t0\n+140032\t0\n+159125\t0\n+100288465\t0\n+378948\t0\n+5940\t0\n+83868\t0\n+378949\t0\n+378950\t0\n+442862\t0\n+441543\t0\n+159163\t0\n+83863\t0\n+159162\t0\n+378951\t0\n+84672\t0\n+9081\t0\n+252949\t0\n+114761\t0\n+9083\t0\n+1617\t0\n+57055\t0\n+474148\t0\n+253175\t0\n+84664\t0\n+100287758\t0\n+84559\t0\n+474151\t0\n+474149\t0\n+442867\t0\n+57054\t0\n+57135\t0\n+442868\t0\n+474150\t0\n+474152\t0\n+401634\t0\n+100287819\t0\n+114758\t0\n+9085\t0\n+114760\t0\n+100506511\t0\n'
b
diff -r e6a2a912677a -r 46cccc52be5f test-data/output_summary_builtin_hg19.tab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_summary_builtin_hg19.tab Sun Jan 14 09:23:49 2018 -0500
b
@@ -0,0 +1,13 @@
+Status pairend_strandspecific_51mer_hg19_chr1_1-100000.bam
+Assigned 3
+Unassigned_Unmapped 0
+Unassigned_MappingQuality 0
+Unassigned_Chimera 0
+Unassigned_FragmentLength 0
+Unassigned_Duplicate 0
+Unassigned_MultiMapping 0
+Unassigned_Secondary 0
+Unassigned_Nonjunction 0
+Unassigned_NoFeatures 37
+Unassigned_Overlapping_Length 0
+Unassigned_Ambiguity 0
b
diff -r e6a2a912677a -r 46cccc52be5f test-data/pairend_strandspecific_51mer_hg19_chr1_1-100000.bam
b
Binary file test-data/pairend_strandspecific_51mer_hg19_chr1_1-100000.bam has changed