# HG changeset patch
# User iuc
# Date 1594848336 14400
# Node ID 421c33b8bf17da14326664c512eb97524eb9e5b3
# Parent  afdbc7fcce7069791d79aafe80ea2434a38c48f2
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks2 commit f55e2407891a3c1f73f14a77b7ddadcd6f5eb1f8"
diff -r afdbc7fcce70 -r 421c33b8bf17 check_bcfile.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/check_bcfile.py	Wed Jul 15 17:25:36 2020 -0400
@@ -0,0 +1,45 @@
+#!/usr/bin/env python
+
+import argparse
+import sys
+
+parser = argparse.ArgumentParser()
+parser.add_argument('bcfile', help='barcode file')
+args = parser.parse_args()
+
+barcodes = []
+
+with open(args.bcfile, "r") as fh:
+    for line in fh:
+        if len(line) == 0:
+            continue
+        if line.startswith("#"):
+            continue
+        barcodes.append(line.split())
+
+if len(barcodes) <= 1:
+    sys.exit("barcode file is empty")
+
+# check that all lines have the same number of columns
+ncol = None
+for bc in barcodes:
+    if ncol is None:
+        ncol = len(bc)
+    elif ncol != len(bc):
+        sys.exit("barcode file has inconsistent number of columns")
+
+isname = False
+for bc in barcodes:
+    if len(bc[-1].strip("ATCGatcg")) > 0:
+        isname = True
+        break
+
+names = set()
+for bc in barcodes:
+    if isname:
+        n = bc[-1]
+    else:
+        n = '-'.join(bc)
+    if n in names:
+        sys.exit("duplicate sample %s in barcode file" % n)
+    names.add(n)
diff -r afdbc7fcce70 -r 421c33b8bf17 macros.xml
--- a/macros.xml	Mon Sep 30 14:17:15 2019 -0400
+++ b/macros.xml	Wed Jul 15 17:25:36 2020 -0400
@@ -3,12 +3,14 @@
     
         
             stacks
+            python
+            findutils
             
         
     
 
-    2.4
-    1
+    2.53
+    0
     
     18.01
 
@@ -107,16 +109,11 @@
     
     > '$output_log' &&
-        #end if
-    ]]>
-    &1
+            2> '$output_log'
         #end if
     ]]>
     
-        
+        
     
     
         
@@ -126,19 +123,19 @@
 
     
     
-        
+        
     
     
-        
+        
     
     
-        
+        
     
     
-        
+        
     
     
-        
+        
     
 
     
     
         
-            
-            
-            
+            
+            
+            
         
     
     
     
         
-            
+            
         
     
     
     
         
-            
+            
         
     
     
     
         
-            
+            
         
     
     
     
-        
-        
-        
-        
-        
-        
+        
+        
+        
+        
+        
     
 
     
         
 
+        
+            genetic_map_options['map_type'] and genetic_map_options['map_format']
+        
+
         
         
             advanced_options['log_fst_comp'] and fstats_conditional['fstats']=='yes'
@@ -533,6 +533,26 @@
         
     
 
+    
+    
+        
+            input_type['input_type_select'] == 'single'
+            
+        
+        
+            input_type['input_type_select'] == 'paired'
+            
+        
+        
+            capture and input_type['input_type_select'] == 'single'
+            
+        
+        
+            capture and input_type['input_type_select'] == 'paired'
+            
+        
+    
+
     
         
             
@@ -554,7 +574,7 @@
             
             
                 
-                
+                
                 
             
             
@@ -574,8 +594,8 @@
          "Error: No value was provided for \-\-var-alpha and there is no default for this model)"
 	-->
     
-        
-        
+        
+        
     
 
     
diff -r afdbc7fcce70 -r 421c33b8bf17 macros_process.xml
--- a/macros_process.xml	Mon Sep 30 14:17:15 2019 -0400
+++ b/macros_process.xml	Wed Jul 15 17:25:36 2020 -0400
@@ -29,12 +29,12 @@
 
     
         
-        
-        
+        
+        
     
     
-        
-        
+        
+        
     
 
     
@@ -71,17 +71,17 @@
                 
             
             
-                
-                
-                
+                
+                
+                
                 
-                
+                
             
             
                 
             
         
-        
+        
     
     
 
     
     
-            
-            
+            
+            
             
     
     
     
-        
-        
+        
+        
     
     
 
+
diff -r afdbc7fcce70 -r 421c33b8bf17 stacks_denovomap.xml
--- a/stacks_denovomap.xml	Mon Sep 30 14:17:15 2019 -0400
+++ b/stacks_denovomap.xml	Wed Jul 15 17:25:36 2020 -0400
@@ -43,7 +43,7 @@
 
     
         
-        
+        
         
 		
 		
         
     
@@ -76,62 +76,63 @@
             used in the pipeline have also a test (should be the first) that test for
             equality thereby it is "ensured" that the pipeline w defaults is doing the same
             as the components w defaults. -->
-        
+        
             
             
                 
                     
                         
-                            
+                            
                             
                         
                     
                     
                         
-                            
+                            
                             
                         
                     
                 
             
-            
+            
+            
             
-                
-                
-                
-                
-                
-                
+                
+                
+                
+                
+                
+                
             
             
-                
-                
-                
+                
+                
+                
             
             
-                
-                
+                
+                
             
             
-                
-                
+                
+                
             
             
-                
-                
+                
+                
             
             
-            
-            
+            
+            
             
-            
-            
+            
         
         
-        
+        
             
-            
-            
+            
+            
+            
             
             
             
@@ -142,34 +143,34 @@
             
             
             
-            
         
         
-        
+        
             
             
                 
-                    
+                    
                     
                 
             
-            
-            
-            
-            
-            
-            
+            
+            
+            
+            
+            
+            
             
-            
+            
             
-                
-                
-                
-                
-                
-                
-                
+                
+                
+                
+                
+                
+                
+                
             
+            
             
             
             
@@ -180,7 +181,6 @@
             
             
             
-            
         
     
 
@@ -244,5 +244,5 @@
 @STACKS_INFOS@
 ]]>
     
-    
+    
 
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/clonefilter/Discarded1_0001.1.1.fq.gz
Binary file test-data/clonefilter/Discarded1_0001.1.1.fq.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/clonefilter/Discarded1_0001.1.1.fq.single.gz
Binary file test-data/clonefilter/Discarded1_0001.1.1.fq.single.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/clonefilter/Removed1_0001.1.1.fq.gz
Binary file test-data/clonefilter/Removed1_0001.1.1.fq.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/clonefilter/Removed1_0001.1.1.fq.single-alt.gz
Binary file test-data/clonefilter/Removed1_0001.1.1.fq.single-alt.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/clonefilter/Removed1_0001.1.1.fq.single.gz
Binary file test-data/clonefilter/Removed1_0001.1.1.fq.single.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/cstacks/catalog.alleles.tsv
--- a/test-data/cstacks/catalog.alleles.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/cstacks/catalog.alleles.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,3 +1,4 @@
-# cstacks version 2.4; catalog generated on 2019-06-18 10:34:45
+# cstacks version 2.52; catalog generated on 2020-03-16 15:39:40
 0	1	AC	0	0
 0	1	CA	0	0
+# cstacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/cstacks/catalog.snps.tsv
--- a/test-data/cstacks/catalog.snps.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/cstacks/catalog.snps.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,3 +1,4 @@
-# cstacks version 2.4; catalog generated on 2019-06-18 10:34:45
+# cstacks version 2.52; catalog generated on 2020-03-16 15:39:40
 0	1	33	E	0	A	C	-	-
 0	1	88	E	0	A	C	-	-
+# cstacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/cstacks/catalog.tags.tsv
--- a/test-data/cstacks/catalog.tags.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/cstacks/catalog.tags.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,4 +1,5 @@
-# cstacks version 2.4; catalog generated on 2019-06-18 10:34:45
+# cstacks version 2.52; catalog generated on 2020-03-16 15:39:40
 0	1	consensus	0	1_1,2_1	AATTCGTTTGCTGCTTCAGGAATCTCTCGTATAATCTGAGTATGTGCGTACGTACGCTATTTAGATGGATAACCGACGCTGCCAGACGAGAGAC	0	0	0
 0	2	consensus	0	1_2,2_2	AATTCGGCTTGCAACGCAAGTGACGATTCCCACGGACATAACTGATCTAAGTAACTTCCAAATCTGGGAATGGGATTTCATAATTAAGGACTAT	0	0	0
 0	3	consensus	0	1_3,2_3	AATTCTCTACACCACAGCATCAATTCTAAAAATGACTACCAGAGAGACAACTCCGCAGTTAAACACTCTGACTGCCACGCCAGCTACCTCTAGA	0	0	0
+# cstacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/denovo_map/denovo_map.log
--- a/test-data/denovo_map/denovo_map.log	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/denovo_map/denovo_map.log	Wed Jul 15 17:25:36 2020 -0400
@@ -1,5 +1,5 @@
-denovo_map.pl version 2.4 started at 2019-06-18 10:34:45
-/home/berntm/miniconda3/envs/mulled-v1-2b57e7596f85ebb3b321e6c9681e8fd9250523a80d97945c46ac7743359454e7/bin/denovo_map.pl --samples demultiplexed --popmap denovo_map/popmap_cstacks.tsv -o stacks_outputs --paired
+denovo_map.pl version 2.52 started at 2020-03-16 15:39:40
+/home/berntm/miniconda3/envs/__stacks@2.52/bin/denovo_map.pl --samples demultiplexed --popmap denovo_map/popmap_cstacks.tsv -o stacks_outputs --paired
 
 ustacks
 ==========
@@ -110,7 +110,7 @@
 
 cstacks
 ==========
-cstacks -P stacks_outputs -M denovo_map/popmap_cstacks.tsv
+cstacks -M denovo_map/popmap_cstacks.tsv -P stacks_outputs
 
 cstacks parameters selected:
   Loci matched based on sequence identity.
@@ -279,8 +279,7 @@
 Working on 1 group(s) of populations:
     defaultgrp: 1
 
-Genotyping markers will be written to 'stacks_outputs/populations.markers.tsv'
-Raw Genotypes/Haplotypes will be written to 'stacks_outputs/populations.haplotypes.tsv'
+Raw haplotypes will be written to 'stacks_outputs/populations.haplotypes.tsv'
 Population-level summary statistics will be written to 'stacks_outputs/populations.sumstats.tsv'
 Population-level haplotype summary statistics will be written to 'stacks_outputs/populations.hapstats.tsv'
 
@@ -306,4 +305,4 @@
 Populations is done.
 denovo_map.pl is done.
 
-denovo_map.pl completed at 2019-06-18 10:34:45
+denovo_map.pl completed at 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/denovo_map/popmap_cstacks_genotypes.tsv
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/denovo_map/popmap_cstacks_genotypes.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -0,0 +1,2 @@
+PopA_01	parent
+PopA_02	progeny
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/gentest.sh
--- a/test-data/gentest.sh	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/gentest.sh	Wed Jul 15 17:25:36 2020 -0400
@@ -1,7 +1,11 @@
 #!/usr/bin/env bash
+eval "$(conda shell.bash hook)"
+conda activate __stacks@2.52
+
+
+
 
 mkdir stacks_outputs
-
 denovo_map.pl --samples demultiplexed --popmap denovo_map/popmap_cstacks.tsv -o stacks_outputs --paired  && 
 gunzip -c stacks_outputs/catalog.calls > stacks_outputs/catalog.calls.vcf
 rm stacks_outputs/catalog.calls
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/gstacks/catalog.calls.vcf
--- a/test-data/gstacks/catalog.calls.vcf	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/gstacks/catalog.calls.vcf	Wed Jul 15 17:25:36 2020 -0400
@@ -1,6 +1,6 @@
 ##fileformat=VCFv4.2
-##fileDate=20190618
-##source="Stacks v2.4"
+##fileDate=20200316
+##source="Stacks v2.52"
 ##INFO=
 ##INFO=
 ##INFO=
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/gstacks/catalog.fa.gz
Binary file test-data/gstacks/catalog.fa.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/gstacks/gstacks.log
--- a/test-data/gstacks/gstacks.log	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/gstacks/gstacks.log	Wed Jul 15 17:25:36 2020 -0400
@@ -1,4 +1,4 @@
-gstacks v2.4, executed 2019-06-18 10:34:45 (zlib-1.2.11)
+gstacks v2.52, executed 2020-03-16 15:39:40 (zlib-1.2.11)
 gstacks -P stacks_outputs -M denovo_map/popmap_cstacks.tsv
 Locus/sample distributions will be written to 'stacks_outputs/gstacks.log.distribs'.
 
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/gstacks/gstacks.log.distribs
--- a/test-data/gstacks/gstacks.log.distribs	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/gstacks/gstacks.log.distribs	Wed Jul 15 17:25:36 2020 -0400
@@ -19,25 +19,25 @@
 Num. threads: 1
 Parallel time: 0.0
 Average thread time spent:
-     0.0  reading (3.1%)
-     0.0  processing (95.2%)
-             0.0 pre-alignments block (72.2%)
-             0.0  reformatting fw-reads (0.1%)
-             0.0  assembling (22.2%)
-             0.0  initializing alignments (5.4%)
-             0.0  aligning (42.9%)
-             0.0  merging read pairs (1.5%)
-             0.0 post-alignments block (21.2%)
+     0.0  reading (3.0%)
+     0.0  processing (95.7%)
+             0.0 pre-alignments block (74.4%)
+             0.0  reformatting fw-reads (0.2%)
+             0.0  assembling (27.3%)
+             0.0  initializing alignments (8.7%)
+             0.0  aligning (36.6%)
+             0.0  merging read pairs (1.6%)
+             0.0 post-alignments block (19.8%)
              0.0  filtering reads (0.0%)
-             0.0  counting nucleotides (3.5%)
-             0.0  genotyping (1.9%)
-             0.0  haplotyping (1.0%)
+             0.0  counting nucleotides (3.2%)
+             0.0  genotyping (1.5%)
+             0.0  haplotyping (0.9%)
              0.0  computing consensus (0.1%)
              0.0  building_fa (0.1%)
-             0.0  building_vcf (14.6%)
-     0.0  writing_fa (0.1%)
-     0.0  writing_vcf (1.3%)
-     0.0  clocking (0.2%)
-Total time spent writing vcf: 0.0 (1.3%)
+             0.0  building_vcf (14.0%)
+     0.0  writing_fa (0.0%)
+     0.0  writing_vcf (0.9%)
+     0.0  clocking (0.1%)
+Total time spent writing vcf: 0.0 (0.8%)
 VCFwrite block size: mean=1.0(n=3); max=1
 END clockings
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/kmerfilter/Removed1_0001.1.1.fq.single.gz
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/kmerfilter/Removed1_0001.1.1.fq.single.gz	Wed Jul 15 17:25:36 2020 -0400
@@ -0,0 +1,20 @@
+@K00392:16:HJ2G2BBXX:7:1102:10825:462401 1:N:0:ATCACG
+GGACATTGGCTGCAGTACTCTGACCCTGGCCACCTCAACCTGTCTCTCTCGCACCGGAAACCTCCGATCCGCAGAAACATGAGCAACCCTACAGTTGACACACACAACAGTTTTCGACCGAAACTACACATTCCTCTGTCCCATTTCCTC
++
+--A-FF-F-	lm
+2		--
+3		lm
+
+individual names:
+PopA_02
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/populations/populations.log
--- a/test-data/populations/populations.log	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/populations/populations.log	Wed Jul 15 17:25:36 2020 -0400
@@ -1,4 +1,4 @@
-populations v2.4, executed 2019-06-18 10:34:45 (zlib-1.2.11)
+populations v2.52, executed 2020-03-16 15:39:40 (zlib-1.2.11)
 populations -P stacks_outputs -M denovo_map/popmap_cstacks.tsv
 Locus/sample distributions will be written to 'stacks_outputs/populations.log.distribs'.
 populations parameters selected:
@@ -20,8 +20,7 @@
 Working on 1 group(s) of populations:
     defaultgrp: 1
 
-Genotyping markers will be written to 'stacks_outputs/populations.markers.tsv'
-Raw Genotypes/Haplotypes will be written to 'stacks_outputs/populations.haplotypes.tsv'
+Raw haplotypes will be written to 'stacks_outputs/populations.haplotypes.tsv'
 Population-level summary statistics will be written to 'stacks_outputs/populations.sumstats.tsv'
 Population-level haplotype summary statistics will be written to 'stacks_outputs/populations.hapstats.tsv'
 
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/populations/populations.phistats_summary.tsv
--- a/test-data/populations/populations.phistats_summary.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/populations/populations.phistats_summary.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -3,3 +3,6 @@
 
 # Fst' Means
 	1
+
+# Dxy Means
+	1
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/procrad/barcodes-duplicate
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/procrad/barcodes-duplicate	Wed Jul 15 17:25:36 2020 -0400
@@ -0,0 +1,41 @@
+ATGGGG	PopA_01
+GGGTAA	PopA_02
+AGGAAA	PopA_03
+TTTAAG	PopA_04
+GGTGTG	PopA_05
+TGATGT	PopA_06
+GGTTGT	PopA_07
+ATAAGT	PopA_08
+AAGATA	PopA_09
+TGTGAG	PopA_10
+ATAGTT	PopA_11
+GGAAGG	PopA_12
+TTTGTG	PopA_13
+TTAAAT	PopA_14
+AATAAG	PopA_15
+AAGAGG	PopA_16
+TAGTGT	PopA_17
+TGGAAG	PopA_18
+GGGTTG	PopA_19
+CATCAT	PopA_20
+GGAGAG	PopB_20
+GTTTTA	PopB_01
+TGATAA	PopB_02
+GTTGAT	PopB_03
+AGATTA	PopB_04
+GTATAG	PopB_05
+TTGGGA	PopB_06
+ATATAT	PopB_07
+GATGAG	PopB_08
+GGGAAT	PopB_09
+AGTAAT	PopB_10
+GGGATA	PopB_11
+GAGAAG	PopB_12
+AGTAGA	PopB_13
+AAGGAT	PopB_14
+AGGGTA	PopB_15
+TGTTTT	PopB_16
+ATGATG	PopB_17
+GAGTTA	PopB_18
+ATGTAG	PopB_19
+AAAAAA	PopA_01
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/procrad/barcodes-duplicate2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/procrad/barcodes-duplicate2	Wed Jul 15 17:25:36 2020 -0400
@@ -0,0 +1,41 @@
+ATGGGG
+GGGTAA
+AGGAAA
+TTTAAG
+GGTGTG
+TGATGT
+GGTTGT
+ATAAGT
+AAGATA
+TGTGAG
+ATAGTT
+GGAAGG
+TTTGTG
+TTAAAT
+AATAAG
+AAGAGG
+TAGTGT
+TGGAAG
+GGGTTG
+CATCAT
+GGAGAG
+GTTTTA
+TGATAA
+GTTGAT
+AGATTA
+GTATAG
+TTGGGA
+ATATAT
+GATGAG
+GGGAAT
+AGTAAT
+GGGATA
+GAGAAG
+AGTAGA
+AAGGAT
+AGGGTA
+TGTTTT
+ATGATG
+GAGTTA
+ATGTAG
+ATGGGG
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/procrad/barcodes-duplicate3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/procrad/barcodes-duplicate3	Wed Jul 15 17:25:36 2020 -0400
@@ -0,0 +1,41 @@
+ATGGGG	AAAAAA
+GGGTAA	AAAAAA
+AGGAAA	AAAAAA
+TTTAAG	AAAAAA
+GGTGTG	AAAAAA
+TGATGT	AAAAAA
+GGTTGT	AAAAAA
+ATAAGT	AAAAAA
+AAGATA	AAAAAA
+TGTGAG	AAAAAA
+ATAGTT	AAAAAA
+GGAAGG	AAAAAA
+TTTGTG	AAAAAA
+TTAAAT	AAAAAA
+AATAAG	AAAAAA
+AAGAGG	AAAAAA
+TAGTGT	AAAAAA
+TGGAAG	AAAAAA
+GGGTTG	AAAAAA
+CATCAT	AAAAAA
+GGAGAG	AAAAAA
+GTTTTA	AAAAAA
+TGATAA	AAAAAA
+GTTGAT	AAAAAA
+AGATTA	AAAAAA
+GTATAG	AAAAAA
+TTGGGA	AAAAAA
+ATATAT	AAAAAA
+GATGAG	AAAAAA
+GGGAAT	AAAAAA
+AGTAAT	AAAAAA
+GGGATA	AAAAAA
+GAGAAG	AAAAAA
+AGTAGA	AAAAAA
+AAGGAT	AAAAAA
+AGGGTA	AAAAAA
+TGTTTT	AAAAAA
+ATGATG	AAAAAA
+GAGTTA	AAAAAA
+ATGTAG	AAAAAA
+ATGGGG	AAAAAA
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/refmap/catalog.calls.vcf
--- a/test-data/refmap/catalog.calls.vcf	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/refmap/catalog.calls.vcf	Wed Jul 15 17:25:36 2020 -0400
@@ -1,6 +1,6 @@
 ##fileformat=VCFv4.2
-##fileDate=20190617
-##source="Stacks v2.4"
+##fileDate=20200709
+##source="Stacks v2.53"
 ##INFO=
 ##INFO=
 ##INFO=
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/refmap/catalog.fa.gz
Binary file test-data/refmap/catalog.fa.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/shortreads/PopA_01.forward.fq.gz
Binary file test-data/shortreads/PopA_01.forward.fq.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/shortreads/PopA_01.reverse.fq.gz
Binary file test-data/shortreads/PopA_01.reverse.fq.gz has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/shortreads/process_shortreads.out
--- a/test-data/shortreads/process_shortreads.out	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/shortreads/process_shortreads.out	Wed Jul 15 17:25:36 2020 -0400
@@ -1,5 +1,5 @@
-process_shortreads v2.2, executed 2018-12-03 21:27:19
-process_shortreads -p stacks_inputs/ -i fastq -b /tmp/tmpiZT6X4/files/000/dataset_2.dat --inline_null -o stacks_outputs
+process_shortreads v2.53, executed 2020-07-10 13:51:53 (zlib-1.2.11)
+process_shortreads -p stacks_inputs/ -i fastq -b /tmp/tmpidt4mij_/files/7/7/8/dataset_778705df-5f0c-4210-9ad6-4c43e8aacd52.dat --inline_null -o stacks_outputs
 File	Retained Reads	Low Quality	Ambiguous Barcodes	Trimmed Reads	Orphaned paired-end reads	Total
 R1.fastq	7000	0	0	0	0	7000
 
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/sstacks/PopA_01.matches.tsv
--- a/test-data/sstacks/PopA_01.matches.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/sstacks/PopA_01.matches.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,5 +1,6 @@
-# sstacks version 2.4; generated on 2019-06-18 10:34:45
+# sstacks version 2.52; generated on 2020-03-16 15:39:40
 1	1	1	AC	9	94M
 1	1	1	CA	9	94M
 2	1	2	consensus	28	94M
 3	1	3	consensus	20	94M
+# sstacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/sstacks/PopA_02.matches.tsv
--- a/test-data/sstacks/PopA_02.matches.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/sstacks/PopA_02.matches.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,5 +1,6 @@
-# sstacks version 2.4; generated on 2019-06-18 10:34:45
+# sstacks version 2.52; generated on 2020-03-16 15:39:40
 1	2	1	AC	6	94M
 1	2	1	CA	6	94M
 2	2	2	consensus	28	94M
 3	2	3	consensus	20	94M
+# sstacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/stacks_outputs/catalog.calls
Binary file test-data/stacks_outputs/catalog.calls has changed
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/stacks_outputs/tsv2bam.log
--- a/test-data/stacks_outputs/tsv2bam.log	Mon Sep 30 14:17:15 2019 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-tsv2bam v2.4, executed 2019-06-18 10:34:45 (zlib-1.2.11)
-tsv2bam -P stacks_outputs -M denovo_map/popmap_cstacks.tsv -R demultiplexed/
-Configuration for this run:
-  Stacks directory: 'stacks_outputs/'
-  Population map: 'denovo_map/popmap_cstacks.tsv'
-  Num. samples: 2
-  Paired-end reads directory: 'demultiplexed/'
-
-Paired-end reads files found, e.g. 'demultiplexed/PopA_01.2.fq'.
-Loading the catalog...
-Processing sample 'PopA_01'...
-Processing sample 'PopA_02'...
-
-Sample 'PopA_01': matched 3 sample loci to 3 catalog loci; found a paired-end read for 66 (100.0%) of the assembled forward reads; wrote 132 records.
-Sample 'PopA_02': matched 3 sample loci to 3 catalog loci; found a paired-end read for 60 (100.0%) of the assembled forward reads; wrote 120 records.
-
-tsv2bam is done.
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/tsv2bam/tsv2bam.log
--- a/test-data/tsv2bam/tsv2bam.log	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/tsv2bam/tsv2bam.log	Wed Jul 15 17:25:36 2020 -0400
@@ -1,4 +1,4 @@
-tsv2bam v2.4, executed 2019-06-17 21:22:16 (zlib-1.2.11)
+tsv2bam v2.52, executed 2020-03-16 15:39:40 (zlib-1.2.11)
 tsv2bam -P stacks_outputs -M denovo_map/popmap_cstacks.tsv -R demultiplexed/
 Configuration for this run:
   Stacks directory: 'stacks_outputs/'
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/ustacks/PopA_01.alleles.tsv
--- a/test-data/ustacks/PopA_01.alleles.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/ustacks/PopA_01.alleles.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,3 +1,4 @@
-# ustacks version 2.4; generated on 2019-06-18 10:34:45
+# ustacks version 2.52; generated on 2020-03-16 15:39:40
 1	1	AC	50.00	9
 1	1	CA	50.00	9
+# ustacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/ustacks/PopA_01.snps.tsv
--- a/test-data/ustacks/PopA_01.snps.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/ustacks/PopA_01.snps.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,4 +1,4 @@
-# ustacks version 2.4; generated on 2019-06-18 10:34:45
+# ustacks version 2.52; generated on 2020-03-16 15:39:40
 1	1	0	O	24.95	A	-		
 1	1	1	O	24.95	A	-		
 1	1	2	O	24.95	T	-		
@@ -281,3 +281,4 @@
 1	3	91	O	27.73	A	-		
 1	3	92	O	27.73	G	-		
 1	3	93	O	27.73	A	-		
+# ustacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/ustacks/PopA_01.tags.tsv
--- a/test-data/ustacks/PopA_01.tags.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/ustacks/PopA_01.tags.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,4 +1,4 @@
-# ustacks version 2.4; generated on 2019-06-18 10:34:45
+# ustacks version 2.52; generated on 2020-03-16 15:39:40
 1	1	consensus			AATTCGTTTGCTGCTTCAGGAATCTCTCGTATAATCTGAGTATGTGCGTACGTACGCTATTTAGATGGATAACCGACGCTGCCAGACGAGAGAC	0	0	0
 1	1	model			OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOEOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOEOOOOO			
 1	1	primary	0	lane1_fakedata7_0 1:N:0:/1	AATTCGTTTGCTGCTTCAGGAATCTCTCGTATACTCTGAGTATGTGCGTACGTACGCTATTTAGATGGATAACCGACGCTGCCAGACGAGAGAC			
@@ -71,3 +71,4 @@
 1	3	primary	0	lane1_fakedata2_19 1:N:0:/1	AATTCTCTACACCACAGCATCAATTCTAAAAATGACTACCAGAGAGACAACTCCGCAGTTAAACACTCTGACTGCCACGCCAGCTACCTCTAGA			
 1	3	secondary		lane1_fakedata2_5 1:N:0:/1	AATTCTCTACACCACAGCATCAATTCTAAAAATGACTACCAGAGAGACAACTCCGCAGTAAAACACTCTGACTGCCACGCCAGCTACCTCTAGA			
 1	3	secondary		lane1_fakedata2_17 1:N:0:/1	AATTCTCTACACCACAGCATCAATTCTAAAAATGACTACCAGAGAGACAACTCCGCAGTTAAACACTCTGACTGCCACGCCAGCTACCTCCAGA			
+# ustacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/ustacks/PopA_02.alleles.tsv
--- a/test-data/ustacks/PopA_02.alleles.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/ustacks/PopA_02.alleles.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,3 +1,4 @@
-# ustacks version 2.4; generated on 2019-06-18 10:34:45
+# ustacks version 2.52; generated on 2020-03-16 15:39:40
 2	1	AC	50.00	6
 2	1	CA	50.00	6
+# ustacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/ustacks/PopA_02.snps.tsv
--- a/test-data/ustacks/PopA_02.snps.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/ustacks/PopA_02.snps.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,4 +1,4 @@
-# ustacks version 2.4; generated on 2019-06-18 10:34:45
+# ustacks version 2.52; generated on 2020-03-16 15:39:40
 2	1	0	O	16.64	A	-		
 2	1	1	O	16.64	A	-		
 2	1	2	O	16.64	T	-		
@@ -281,3 +281,4 @@
 2	3	91	O	27.73	A	-		
 2	3	92	O	27.73	G	-		
 2	3	93	O	27.73	A	-		
+# ustacks completed on 2020-03-16 15:39:40
diff -r afdbc7fcce70 -r 421c33b8bf17 test-data/ustacks/PopA_02.tags.tsv
--- a/test-data/ustacks/PopA_02.tags.tsv	Mon Sep 30 14:17:15 2019 -0400
+++ b/test-data/ustacks/PopA_02.tags.tsv	Wed Jul 15 17:25:36 2020 -0400
@@ -1,4 +1,4 @@
-# ustacks version 2.4; generated on 2019-06-18 10:34:45
+# ustacks version 2.52; generated on 2020-03-16 15:39:40
 2	1	consensus			AATTCGTTTGCTGCTTCAGGAATCTCTCGTATAATCTGAGTATGTGCGTACGTACGCTATTTAGATGGATAACCGACGCTGCCAGACGAGAGAC	0	0	0
 2	1	model			OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOEOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOEOOOOO			
 2	1	primary	0	lane1_fakedata7_7 1:N:0:/1	AATTCGTTTGCTGCTTCAGGAATCTCTCGTATACTCTGAGTATGTGCGTACGTACGCTATTTAGATGGATAACCGACGCTGCCAGACGAGAGAC			
@@ -65,3 +65,4 @@
 2	3	primary	0	lane1_fakedata2_18 1:N:0:/1	AATTCTCTACACCACAGCATCAATTCTAAAAATGACTACCAGAGAGACAACTCCGCAGTTAAACACTCTGACTGCCACGCCAGCTACCTCTAGA			
 2	3	primary	0	lane1_fakedata2_19 1:N:0:/1	AATTCTCTACACCACAGCATCAATTCTAAAAATGACTACCAGAGAGACAACTCCGCAGTTAAACACTCTGACTGCCACGCCAGCTACCTCTAGA			
 2	3	secondary		lane1_fakedata2_1 1:N:0:/1	AATTCTCTACACCACTGCATCAATTCTAAAAATGACTACCAGAGAGACAACTCCGCAGTTAAACACTCTGACTGCCACGCCAGCTACCTCTAGA			
+# ustacks completed on 2020-03-16 15:39:40