Mapping reads to scaffolds with BWA (Burrows-Wheeler Aligner) and sorting with Samtools

We now have seen the reads and the assembly with our own eyes. In any bio-informatic step, learn yourself always to have a peek into the actual data you are producing. Since you now have seen that the files look OK, we can start by mapping (aligning) the original reads in .fastq.gz files back to the scaffolds created with the assembly; the scaffolds.fasta file. Doing this will allow us to calculate the depth on the scaffolds; a prerequisite for the binning procedure.

Algning is achieved with bwa. Per sample, we map the reads against the scaffolds and save the mapping as a .bam file.

  1. To run bwa, we first need to make an index file of the scaffolds.
  2. Then we can run bwa and immediately pipe the output of bwa through samtools view which will output a .bam file .
  3. Finally, since we have quite a few .bam files to align to the assembly, we will make a for loop that will iterate over the different samples we have.

Rember that the reads are paired-end Illumina sequences, which means that for each DNA fragment, we have sequence data from both ends. Therefore, the sequences are stored in two separate files (one for the data from each end). We'll use bwa with default settings to align the reads back to the scaffolds, and then samtools allows us to work with the bwa results.

[Q:] Why this called back-mapping and not just mapping?

[A:] We often call this back-mapping because we map the original reads used for the assembly, back to the original assembly.

[Q:] Why do we not use the depth in the scaffold names?

⤷ Click here for a hint Remember that in the back-mapping step, we map, store and process all samples individually.

[A:] In the abundance graph we already say that when we look at abundance over all samples pooled, three bacteria are all equally abundant and indistinguisable without extra information. If we determine the abundance in all six samples individually, some microbes might be more present in one sample, and some more in another. Hence we will look at differential abundance over all samples for all contigs.

This differential abundance per bacterial genome can already be seen in an extended version the colourfull dot plot of the previous practical page. Here we look at 6 assemblies of the six individual samples.

image.png

The next assignment is a complicated one. Make sure to read the instructions carefully and remember what you learned about bash loops earlier.

When in doubt, don't forget to read the 'help page' of a command like so:

ls --help

or sometimes by executing the command without any arguments like so:

bwa

bwa index

For more elaborate information, read the manual with the man command. Unfortunately, this doesn't work well inside Jupyter notebooks.

man bwa

man samtools

1 Index the assembly with bwa index

[DO:] Create an index of the scaffolds with bwa index** Start by reading the bwa index instructions.

  1. Remember to look for the 'usage' line first.
  2. You won't need any options here.
  3. Remember where the assembly was? We just gUnzipped it in the last notebook.
  4. use ls and auto completion to find your way to the right file
In [1]:
bwa index
Usage:   bwa index [options] <in.fasta>

Options: -a STR    BWT construction algorithm: bwtsw, is or rb2 [auto]
         -p STR    prefix of the index [same as fasta name]
         -b INT    block size for the bwtsw algorithm (effective with -a bwtsw) [10000000]
         -6        index files named as <in.fasta>.64.* instead of <in.fasta>.* 

Warning: `-a bwtsw' does not work for short genomes, while `-a is' and
         `-a div' do not work not for long genomes.


In [3]:
ls data/assembly
scaffolds.fasta  scaffolds.fasta.gz
In [4]:
bwa index ./data/assembly/scaffolds.fasta
[bwa_index] Pack FASTA... 0.61 sec
[bwa_index] Construct BWT for the packed sequence...
[BWTIncCreate] textLength=210601834, availableWord=26818708
[BWTIncConstructFromPacked] 10 iterations done. 44238506 characters processed.
[BWTIncConstructFromPacked] 20 iterations done. 81726650 characters processed.
[BWTIncConstructFromPacked] 30 iterations done. 115042122 characters processed.
[BWTIncConstructFromPacked] 40 iterations done. 144649002 characters processed.
[BWTIncConstructFromPacked] 50 iterations done. 170959642 characters processed.
[BWTIncConstructFromPacked] 60 iterations done. 194340570 characters processed.
[bwt_gen] Finished constructing BWT in 68 iterations.
[bwa_index] 61.56 seconds elapse.
[bwa_index] Update BWT... 0.51 sec
[bwa_index] Pack forward-only FASTA... 0.40 sec
[bwa_index] Construct SA from BWT and Occ... 31.49 sec
[main] Version: 0.7.17-r1188
[main] CMD: bwa index ./data/assembly/scaffolds.fasta
[main] Real time: 96.467 sec; CPU: 94.577 sec

While this runs, think about what is happening. Mapping always takes a query sequence and a reference sequence. The reference is our assembly, specifically the scaffolds.fasta file. What bwa index does, is take this reference and 'index' it. This means as much as it converts this regular text fasta file, into a binary format that computers can efficiently search.

Check the output of bwa

After creating the index, there should be multiple files in the assembly folder. Think about what command you could use to see if that is the case. Use the empty cell below.

[DO:] Check if the index files were created:

In [5]:
ls data/assembly
scaffolds.fasta      scaffolds.fasta.bwt  scaffolds.fasta.sa
scaffolds.fasta.amb  scaffolds.fasta.gz
scaffolds.fasta.ann  scaffolds.fasta.pac

Besides the original scaffolds file, we now expect multiple other files. All of these together comprise the index we just made. A bwa index of a fasta file can be seen as a binary representation of the fasta file that bwa can search efficiently. It is not meant for human eyes, but purely for the computer algorithms to search through.

Run bwa mem for backmapping

For this part, we will combine your skills on bash loops and variables to run bwa mem and samtools view on all the reads in data/reads and create BAM output files in a newly made directory.

Then we use a bash for loop to run samtools sort on all the files created by samtools view

Step by step instructions:

  1. make a new directory for the samtools view results, give this a useful name
    1. I suggest ./data/mapped
    2. to make a directory, use the command mkdir
  2. See how the loop I pre-made for you works, play a bit to see if you understand correctly
  3. Don't forget to read the manual page of both! You can make extra cells to print these manual pages if you want to.
  4. finish the for loop and run both these commands in a pipe
    1. bwa mem
    2. samtools view
  5. bwa mem does not require any options,
  6. For samtools view, look for the options to convert to a BAM file and write the output to a file.

It should look somewhat like this bwa mem argument argument.fastq | samtools view argument argument

If you forgot how a loop works, check the notebook of this morning' m1-jupyter_and_bash_basics.ipynb' .

Mapping each separate sample will take about 5 to 6 minutes. If you think your loop works (read: it doesn't crash immediately), then check in the next notebook if the files are created and if they increase in size. Use ls -sh.

[DO:] 1 First make your new directory here:

In [6]:
mkdir ./data/mapped

[DO:] 2 now see how this loop works:

In [7]:
# first I define the samples in a variable called 'samples'
samples=( L1 L2 L3 P1 P2 P3 )
# next I use this variable in my loop
for i in ${samples[@]}
    do echo $i  
done
L1
L2
L3
P1
P2
P3

[DO:] 3 Read the manual pages of bwa and samtools. Remember to find the usage lines.

In [8]:
bwa mem
Usage: bwa mem [options] <idxbase> <in1.fq> [in2.fq]

Algorithm options:

       -t INT        number of threads [1]
       -k INT        minimum seed length [19]
       -w INT        band width for banded alignment [100]
       -d INT        off-diagonal X-dropoff [100]
       -r FLOAT      look for internal seeds inside a seed longer than {-k} * FLOAT [1.5]
       -y INT        seed occurrence for the 3rd round seeding [20]
       -c INT        skip seeds with more than INT occurrences [500]
       -D FLOAT      drop chains shorter than FLOAT fraction of the longest overlapping chain [0.50]
       -W INT        discard a chain if seeded bases shorter than INT [0]
       -m INT        perform at most INT rounds of mate rescues for each read [50]
       -S            skip mate rescue
       -P            skip pairing; mate rescue performed unless -S also in use

Scoring options:

       -A INT        score for a sequence match, which scales options -TdBOELU unless overridden [1]
       -B INT        penalty for a mismatch [4]
       -O INT[,INT]  gap open penalties for deletions and insertions [6,6]
       -E INT[,INT]  gap extension penalty; a gap of size k cost '{-O} + {-E}*k' [1,1]
       -L INT[,INT]  penalty for 5'- and 3'-end clipping [5,5]
       -U INT        penalty for an unpaired read pair [17]

       -x STR        read type. Setting -x changes multiple parameters unless overridden [null]
                     pacbio: -k17 -W40 -r10 -A1 -B1 -O1 -E1 -L0  (PacBio reads to ref)
                     ont2d: -k14 -W20 -r10 -A1 -B1 -O1 -E1 -L0  (Oxford Nanopore 2D-reads to ref)
                     intractg: -B9 -O16 -L5  (intra-species contigs to ref)

Input/output options:

       -p            smart pairing (ignoring in2.fq)
       -R STR        read group header line such as '@RG\tID:foo\tSM:bar' [null]
       -H STR/FILE   insert STR to header if it starts with @; or insert lines in FILE [null]
       -o FILE       sam file to output results to [stdout]
       -j            treat ALT contigs as part of the primary assembly (i.e. ignore <idxbase>.alt file)
       -5            for split alignment, take the alignment with the smallest coordinate as primary
       -q            don't modify mapQ of supplementary alignments
       -K INT        process INT input bases in each batch regardless of nThreads (for reproducibility) []

       -v INT        verbosity level: 1=error, 2=warning, 3=message, 4+=debugging [3]
       -T INT        minimum score to output [30]
       -h INT[,INT]  if there are <INT hits with score >80% of the max score, output all in XA [5,200]
       -a            output all alignments for SE or unpaired PE
       -C            append FASTA/FASTQ comment to SAM output
       -V            output the reference FASTA header in the XR tag
       -Y            use soft clipping for supplementary alignments
       -M            mark shorter split hits as secondary

       -I FLOAT[,FLOAT[,INT[,INT]]]
                     specify the mean, standard deviation (10% of the mean if absent), max
                     (4 sigma from the mean if absent) and min of the insert size distribution.
                     FR orientation only. [inferred]

Note: Please read the man page for detailed description of the command line and options.


In [9]:
samtools view
Usage: samtools view [options] <in.bam>|<in.sam>|<in.cram> [region ...]

Options:
  -b       output BAM
  -C       output CRAM (requires -T)
  -1       use fast BAM compression (implies -b)
  -u       uncompressed BAM output (implies -b)
  -h       include header in SAM output
  -H       print SAM header only (no alignments)
  -c       print only the count of matching records
  -o FILE  output file name [stdout]
  -U FILE  output reads not selected by filters to FILE [null]
  -t FILE  FILE listing reference names and lengths (see long help) [null]
  -X       include customized index file
  -L FILE  only include reads overlapping this BED FILE [null]
  -r STR   only include reads in read group STR [null]
  -R FILE  only include reads with read group listed in FILE [null]
  -d STR:STR
           only include reads with tag STR and associated value STR [null]
  -D STR:FILE
           only include reads with tag STR and associated values listed in
           FILE [null]
  -q INT   only include reads with mapping quality >= INT [0]
  -l STR   only include reads in library STR [null]
  -m INT   only include reads with number of CIGAR operations consuming
           query sequence >= INT [0]
  -f INT   only include reads with all  of the FLAGs in INT present [0]
  -F INT   only include reads with none of the FLAGS in INT present [0]
  -G INT   only EXCLUDE reads with all  of the FLAGs in INT present [0]
  -s FLOAT subsample reads (given INT.FRAC option value, 0.FRAC is the
           fraction of templates/read pairs to keep; INT part sets seed)
  -M       use the multi-region iterator (increases the speed, removes
           duplicates and outputs the reads as they are ordered in the file)
  -x STR   read tag to strip (repeatable) [null]
  -B       collapse the backward CIGAR operation
  -?       print long help, including note about region specification
  -S       ignored (input format is auto-detected)
  --no-PG  do not add a PG line
      --input-fmt-option OPT[=VAL]
               Specify a single input file format option in the form
               of OPTION or OPTION=VALUE
  -O, --output-fmt FORMAT[,OPT[=VAL]]...
               Specify output format (SAM, BAM, CRAM)
      --output-fmt-option OPT[=VAL]
               Specify a single output file format option in the form
               of OPTION or OPTION=VALUE
  -T, --reference FILE
               Reference sequence FASTA FILE [null]
  -@, --threads INT
               Number of additional threads to use [0]
      --write-index
               Automatically index the output files [off]
      --verbosity INT
               Set level of verbosity

Now it's up to you! Here you have another variant of the loop I made above. Substitute the ls command for a bwa command. Also, note that you can use the variable inside a path!

[DO:] Map the paired-end reads of each sample to the index scaffolds and save the output as a .bam file.

In [10]:
# first I define the samples in a variable called 'samples'
samples=( L1 L2 L3 P1 P2 P3 )
# next I use this variable in my loop
for i in ${samples[@]}
    do bwa mem data/assembly/scaffolds.fasta data/reads/$i.R1.fastq.gz data/reads/$i.R2.fastq.gz | samtools view -b -o data/mapped/$i.bam
done
[M::bwa_idx_load_from_disk] read 0 ALT contigs
[M::process] read 66522 sequences (10000240 bp)...
[M::process] read 66530 sequences (10000146 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 24302, 3, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (465, 542, 621)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (153, 933)
[M::mem_pestat] mean and std.dev: (540.79, 119.46)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1089)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66522 reads in 9.961 CPU sec, 9.837 real sec
[M::process] read 66546 sequences (10000170 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 24410, 2, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (465, 541, 618)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (159, 924)
[M::mem_pestat] mean and std.dev: (539.39, 117.79)
[M::mem_pestat] low and high boundaries for proper pairs: (6, 1077)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66530 reads in 9.434 CPU sec, 9.273 real sec
[M::process] read 66548 sequences (10000211 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24254, 0, 9)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (463, 540, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (155, 925)
[M::mem_pestat] mean and std.dev: (537.71, 117.73)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1079)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66546 reads in 11.190 CPU sec, 11.034 real sec
[M::process] read 66566 sequences (10000064 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24211, 0, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (462, 540, 615)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (156, 921)
[M::mem_pestat] mean and std.dev: (536.74, 117.93)
[M::mem_pestat] low and high boundaries for proper pairs: (3, 1074)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66548 reads in 15.693 CPU sec, 15.469 real sec
[M::process] read 66554 sequences (10000211 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24254, 4, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (466, 542, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (164, 919)
[M::mem_pestat] mean and std.dev: (538.74, 118.01)
[M::mem_pestat] low and high boundaries for proper pairs: (13, 1070)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66566 reads in 13.012 CPU sec, 12.862 real sec
[M::process] read 66556 sequences (10000016 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24127, 4, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (463, 540, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (155, 925)
[M::mem_pestat] mean and std.dev: (538.18, 118.91)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1079)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66554 reads in 10.621 CPU sec, 10.454 real sec
[M::process] read 66568 sequences (10000247 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (8, 24245, 2, 0)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (465, 543, 620)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (155, 930)
[M::mem_pestat] mean and std.dev: (540.17, 118.97)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1085)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66556 reads in 11.501 CPU sec, 11.257 real sec
[M::process] read 66568 sequences (10000190 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24225, 1, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (465, 541, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (161, 921)
[M::mem_pestat] mean and std.dev: (538.81, 117.02)
[M::mem_pestat] low and high boundaries for proper pairs: (9, 1073)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66568 reads in 14.206 CPU sec, 14.056 real sec
[M::process] read 66578 sequences (10000282 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 24110, 4, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (464, 540, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (158, 923)
[M::mem_pestat] mean and std.dev: (538.23, 119.28)
[M::mem_pestat] low and high boundaries for proper pairs: (5, 1076)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66568 reads in 12.631 CPU sec, 12.469 real sec
[M::process] read 66576 sequences (10000052 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24187, 3, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (462, 540, 615)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (156, 921)
[M::mem_pestat] mean and std.dev: (536.15, 118.31)
[M::mem_pestat] low and high boundaries for proper pairs: (3, 1074)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66578 reads in 12.391 CPU sec, 12.303 real sec
[M::process] read 66574 sequences (10000021 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24059, 2, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (464, 540, 615)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (162, 917)
[M::mem_pestat] mean and std.dev: (537.47, 116.94)
[M::mem_pestat] low and high boundaries for proper pairs: (11, 1068)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66576 reads in 15.195 CPU sec, 15.028 real sec
[M::process] read 66574 sequences (10000292 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 24095, 1, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (462, 539, 615)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (156, 921)
[M::mem_pestat] mean and std.dev: (536.18, 117.95)
[M::mem_pestat] low and high boundaries for proper pairs: (3, 1074)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66574 reads in 10.721 CPU sec, 10.550 real sec
[M::process] read 66570 sequences (10000186 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 24231, 3, 1)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (463, 540, 615)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (159, 919)
[M::mem_pestat] mean and std.dev: (536.93, 117.99)
[M::mem_pestat] low and high boundaries for proper pairs: (7, 1071)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66574 reads in 9.426 CPU sec, 9.268 real sec
[M::process] read 66576 sequences (10000022 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 24143, 6, 1)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (462, 540, 614)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (158, 918)
[M::mem_pestat] mean and std.dev: (536.58, 118.21)
[M::mem_pestat] low and high boundaries for proper pairs: (6, 1070)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66570 reads in 9.090 CPU sec, 8.934 real sec
[M::process] read 66560 sequences (10000009 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24215, 5, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (465, 542, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (161, 921)
[M::mem_pestat] mean and std.dev: (538.89, 117.83)
[M::mem_pestat] low and high boundaries for proper pairs: (9, 1073)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66576 reads in 9.136 CPU sec, 8.973 real sec
[M::process] read 66566 sequences (10000173 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 24143, 4, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (463, 540, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (155, 925)
[M::mem_pestat] mean and std.dev: (537.97, 118.02)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1079)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66560 reads in 9.186 CPU sec, 9.028 real sec
[M::process] read 66578 sequences (10000159 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24116, 4, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (464, 539, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (158, 923)
[M::mem_pestat] mean and std.dev: (537.23, 117.44)
[M::mem_pestat] low and high boundaries for proper pairs: (5, 1076)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66566 reads in 9.083 CPU sec, 8.925 real sec
[M::process] read 66580 sequences (10000120 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24224, 2, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (465, 540, 618)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (159, 924)
[M::mem_pestat] mean and std.dev: (539.29, 117.87)
[M::mem_pestat] low and high boundaries for proper pairs: (6, 1077)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66578 reads in 9.347 CPU sec, 9.193 real sec
[M::process] read 66568 sequences (10000035 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 24228, 5, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (464, 541, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (158, 923)
[M::mem_pestat] mean and std.dev: (538.51, 118.35)
[M::mem_pestat] low and high boundaries for proper pairs: (5, 1076)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66580 reads in 9.108 CPU sec, 8.951 real sec
[M::process] read 66582 sequences (10000285 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 24140, 4, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (464, 541, 618)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (156, 926)
[M::mem_pestat] mean and std.dev: (539.12, 118.55)
[M::mem_pestat] low and high boundaries for proper pairs: (2, 1080)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66568 reads in 9.016 CPU sec, 8.854 real sec
[M::process] read 66572 sequences (10000301 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 24223, 3, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (465, 540, 618)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (159, 924)
[M::mem_pestat] mean and std.dev: (538.64, 117.58)
[M::mem_pestat] low and high boundaries for proper pairs: (6, 1077)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66582 reads in 9.113 CPU sec, 8.961 real sec
[M::process] read 66578 sequences (10000202 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24208, 1, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (466, 540, 616)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (166, 916)
[M::mem_pestat] mean and std.dev: (537.89, 117.19)
[M::mem_pestat] low and high boundaries for proper pairs: (16, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66572 reads in 9.132 CPU sec, 8.967 real sec
[M::process] read 66568 sequences (10000166 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24273, 3, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (463, 539, 616)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (157, 922)
[M::mem_pestat] mean and std.dev: (537.01, 117.05)
[M::mem_pestat] low and high boundaries for proper pairs: (4, 1075)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66578 reads in 9.169 CPU sec, 9.012 real sec
[M::process] read 66558 sequences (10000010 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 24145, 1, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (463, 541, 618)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (153, 928)
[M::mem_pestat] mean and std.dev: (538.07, 119.42)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1083)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66568 reads in 9.078 CPU sec, 8.922 real sec
[M::process] read 66556 sequences (10000037 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24243, 3, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (464, 541, 619)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (154, 929)
[M::mem_pestat] mean and std.dev: (538.87, 118.37)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1084)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66558 reads in 9.111 CPU sec, 8.953 real sec
[M::process] read 66564 sequences (10000119 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24110, 2, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (463, 540, 617)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (155, 925)
[M::mem_pestat] mean and std.dev: (537.46, 118.73)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1079)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66556 reads in 9.222 CPU sec, 9.065 real sec
[M::process] read 66574 sequences (10000151 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24300, 4, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (461, 538, 613)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (157, 917)
[M::mem_pestat] mean and std.dev: (535.11, 116.91)
[M::mem_pestat] low and high boundaries for proper pairs: (5, 1069)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66564 reads in 9.098 CPU sec, 8.940 real sec
[M::process] read 66548 sequences (10000159 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 24198, 3, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (464, 539, 616)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (160, 920)
[M::mem_pestat] mean and std.dev: (537.55, 116.93)
[M::mem_pestat] low and high boundaries for proper pairs: (8, 1072)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66574 reads in 9.240 CPU sec, 9.084 real sec
[M::process] read 66564 sequences (10000269 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24232, 4, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (462, 538, 614)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (158, 918)
[M::mem_pestat] mean and std.dev: (535.04, 117.08)
[M::mem_pestat] low and high boundaries for proper pairs: (6, 1070)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66548 reads in 9.281 CPU sec, 9.121 real sec
[M::process] read 3078 sequences (462865 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (8, 24247, 2, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (463, 539, 613)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (163, 913)
[M::mem_pestat] mean and std.dev: (534.96, 115.16)
[M::mem_pestat] low and high boundaries for proper pairs: (13, 1063)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66564 reads in 9.233 CPU sec, 9.182 real sec
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (0, 1059, 0, 0)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (460, 528, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (182, 877)
[M::mem_pestat] mean and std.dev: (526.32, 109.24)
[M::mem_pestat] low and high boundaries for proper pairs: (43, 1016)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 3078 reads in 0.519 CPU sec, 0.470 real sec
[main] Version: 0.7.17-r1188
[main] CMD: bwa mem data/assembly/scaffolds.fasta data/reads/L1.R1.fastq.gz data/reads/L1.R2.fastq.gz
[main] Real time: 307.658 sec; CPU: 312.386 sec
[M::bwa_idx_load_from_disk] read 0 ALT contigs
[M::process] read 66560 sequences (10000114 bp)...
[M::process] read 66558 sequences (10000059 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (10, 24462, 0, 5)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (122, 214, 277)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 587)
[M::mem_pestat] mean and std.dev: (217.50, 121.13)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 742)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 514, 591)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (141, 891)
[M::mem_pestat] mean and std.dev: (515.67, 115.80)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1041)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66560 reads in 9.059 CPU sec, 8.941 real sec
[M::process] read 66584 sequences (10000065 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (20, 24501, 3, 3)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (114, 205, 446)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1110)
[M::mem_pestat] mean and std.dev: (260.58, 172.74)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1442)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 514, 591)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 889)
[M::mem_pestat] mean and std.dev: (515.43, 115.71)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1038)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66558 reads in 9.119 CPU sec, 8.961 real sec
[M::process] read 66574 sequences (10000045 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (12, 24510, 4, 3)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (95, 174, 320)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 770)
[M::mem_pestat] mean and std.dev: (184.83, 112.73)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 995)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 514, 588)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 882)
[M::mem_pestat] mean and std.dev: (513.69, 113.94)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1029)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66584 reads in 9.133 CPU sec, 8.975 real sec
[M::process] read 66598 sequences (10000214 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (12, 24415, 0, 4)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (144, 217, 316)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 660)
[M::mem_pestat] mean and std.dev: (221.17, 114.42)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 832)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 513, 591)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (141, 891)
[M::mem_pestat] mean and std.dev: (514.13, 116.26)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1041)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66574 reads in 9.109 CPU sec, 8.947 real sec
[M::process] read 66576 sequences (10000250 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (16, 24314, 1, 4)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (203, 277, 363)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 683)
[M::mem_pestat] mean and std.dev: (261.12, 152.60)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 872)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 512, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 888)
[M::mem_pestat] mean and std.dev: (513.73, 114.86)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1037)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66598 reads in 9.151 CPU sec, 8.992 real sec
[M::process] read 66602 sequences (10000209 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (13, 24399, 1, 6)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (66, 276, 393)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1047)
[M::mem_pestat] mean and std.dev: (235.69, 162.67)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1374)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 513, 591)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (141, 891)
[M::mem_pestat] mean and std.dev: (514.18, 116.67)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1041)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66576 reads in 9.006 CPU sec, 8.856 real sec
[M::process] read 66612 sequences (10000195 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (13, 24241, 1, 4)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (148, 197, 393)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 883)
[M::mem_pestat] mean and std.dev: (233.67, 125.39)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1128)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 514, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 888)
[M::mem_pestat] mean and std.dev: (515.16, 115.39)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1037)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66602 reads in 9.198 CPU sec, 9.035 real sec
[M::process] read 66606 sequences (10000115 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (17, 24324, 1, 3)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (95, 203, 397)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1001)
[M::mem_pestat] mean and std.dev: (241.41, 157.08)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1303)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 513, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 888)
[M::mem_pestat] mean and std.dev: (514.44, 116.09)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1037)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66612 reads in 9.202 CPU sec, 9.058 real sec
[M::process] read 66604 sequences (10000129 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (14, 24337, 3, 8)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (116, 212, 392)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 944)
[M::mem_pestat] mean and std.dev: (219.54, 120.53)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1220)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 512, 589)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (142, 887)
[M::mem_pestat] mean and std.dev: (512.83, 115.21)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1036)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66606 reads in 9.143 CPU sec, 8.981 real sec
[M::process] read 66584 sequences (10000215 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (11, 24318, 4, 5)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (182, 213, 349)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 683)
[M::mem_pestat] mean and std.dev: (231.10, 125.19)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 850)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 514, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 888)
[M::mem_pestat] mean and std.dev: (514.61, 114.84)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1037)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66604 reads in 9.075 CPU sec, 8.916 real sec
[M::process] read 66590 sequences (10000210 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (8, 24394, 2, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 513, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (140, 890)
[M::mem_pestat] mean and std.dev: (514.05, 115.78)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1040)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66584 reads in 9.235 CPU sec, 9.070 real sec
[M::process] read 66590 sequences (10000172 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (14, 24352, 3, 3)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (116, 197, 389)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 935)
[M::mem_pestat] mean and std.dev: (202.75, 106.09)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1208)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 513, 589)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (145, 885)
[M::mem_pestat] mean and std.dev: (514.23, 114.22)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1033)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66590 reads in 9.269 CPU sec, 9.107 real sec
[M::process] read 66606 sequences (10000245 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (14, 24276, 1, 4)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (105, 142, 216)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 438)
[M::mem_pestat] mean and std.dev: (168.21, 84.35)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 549)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 514, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 886)
[M::mem_pestat] mean and std.dev: (515.55, 114.81)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1034)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66590 reads in 9.093 CPU sec, 8.932 real sec
[M::process] read 66612 sequences (10000152 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (10, 24350, 3, 5)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (132, 305, 376)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 864)
[M::mem_pestat] mean and std.dev: (234.33, 146.27)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1108)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 514, 589)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (142, 887)
[M::mem_pestat] mean and std.dev: (513.86, 115.24)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1036)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66606 reads in 9.555 CPU sec, 9.394 real sec
[M::process] read 66628 sequences (10000043 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (20, 24323, 1, 9)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (142, 281, 430)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1006)
[M::mem_pestat] mean and std.dev: (264.68, 172.08)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1294)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 515, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 886)
[M::mem_pestat] mean and std.dev: (515.60, 114.63)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1034)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66612 reads in 9.255 CPU sec, 9.096 real sec
[M::process] read 66634 sequences (10000283 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (12, 24350, 5, 3)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (201, 350, 595)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1383)
[M::mem_pestat] mean and std.dev: (285.00, 175.07)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1777)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 515, 591)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 889)
[M::mem_pestat] mean and std.dev: (515.75, 115.36)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1038)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66628 reads in 9.186 CPU sec, 9.028 real sec
[M::process] read 66592 sequences (10000092 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (11, 24237, 4, 6)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (175, 270, 450)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1000)
[M::mem_pestat] mean and std.dev: (265.40, 127.58)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1275)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 515, 591)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (141, 891)
[M::mem_pestat] mean and std.dev: (515.74, 114.91)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1041)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66634 reads in 12.772 CPU sec, 12.613 real sec
[M::process] read 66600 sequences (10000135 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (17, 24271, 3, 4)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (153, 189, 293)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 573)
[M::mem_pestat] mean and std.dev: (232.82, 128.85)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 748)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 514, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 886)
[M::mem_pestat] mean and std.dev: (515.62, 114.18)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1034)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66592 reads in 8.561 CPU sec, 8.404 real sec
[M::process] read 66610 sequences (10000108 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (17, 24430, 4, 1)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (155, 257, 383)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 839)
[M::mem_pestat] mean and std.dev: (252.44, 115.86)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1067)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 513, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 888)
[M::mem_pestat] mean and std.dev: (514.49, 115.88)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1037)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66600 reads in 8.623 CPU sec, 8.468 real sec
[M::process] read 66598 sequences (10000055 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (12, 24278, 5, 6)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (151, 236, 402)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 904)
[M::mem_pestat] mean and std.dev: (266.25, 129.78)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1155)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 514, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (140, 890)
[M::mem_pestat] mean and std.dev: (514.18, 116.07)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1040)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66610 reads in 8.626 CPU sec, 8.471 real sec
[M::process] read 66594 sequences (10000130 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (11, 24281, 3, 5)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (217, 330, 415)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 811)
[M::mem_pestat] mean and std.dev: (279.36, 154.30)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1009)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 511, 588)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 884)
[M::mem_pestat] mean and std.dev: (512.60, 114.13)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1032)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66598 reads in 8.777 CPU sec, 8.625 real sec
[M::process] read 66592 sequences (10000262 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (20, 24315, 6, 5)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (190, 271, 340)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 640)
[M::mem_pestat] mean and std.dev: (253.30, 122.98)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 790)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 514, 590)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 886)
[M::mem_pestat] mean and std.dev: (514.44, 114.41)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1034)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66594 reads in 8.661 CPU sec, 8.506 real sec
[M::process] read 66612 sequences (10000298 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (17, 24351, 2, 4)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (107, 205, 454)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1148)
[M::mem_pestat] mean and std.dev: (251.81, 156.41)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1495)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 513, 589)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (142, 887)
[M::mem_pestat] mean and std.dev: (513.13, 115.53)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1036)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66592 reads in 8.707 CPU sec, 8.552 real sec
[M::process] read 66600 sequences (10000011 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (13, 24329, 4, 7)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (135, 377, 494)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1212)
[M::mem_pestat] mean and std.dev: (319.31, 189.07)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1571)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 513, 589)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 883)
[M::mem_pestat] mean and std.dev: (514.29, 114.77)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1030)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66612 reads in 8.770 CPU sec, 8.611 real sec
[M::process] read 66598 sequences (10000166 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (12, 24343, 5, 5)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (89, 112, 499)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1319)
[M::mem_pestat] mean and std.dev: (188.27, 167.22)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1729)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (441, 513, 587)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (149, 879)
[M::mem_pestat] mean and std.dev: (512.66, 113.59)
[M::mem_pestat] low and high boundaries for proper pairs: (3, 1025)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66600 reads in 8.745 CPU sec, 8.586 real sec
[M::process] read 66594 sequences (10000087 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (14, 24135, 2, 5)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (75, 236, 332)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 846)
[M::mem_pestat] mean and std.dev: (227.29, 142.76)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1103)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 513, 588)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 880)
[M::mem_pestat] mean and std.dev: (513.58, 112.97)
[M::mem_pestat] low and high boundaries for proper pairs: (4, 1026)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66598 reads in 8.841 CPU sec, 8.686 real sec
[M::process] read 66604 sequences (10000077 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (10, 24354, 1, 3)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (165, 238, 407)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 891)
[M::mem_pestat] mean and std.dev: (263.30, 112.78)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1133)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 511, 587)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 881)
[M::mem_pestat] mean and std.dev: (511.50, 113.18)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1028)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66594 reads in 8.711 CPU sec, 8.552 real sec
[M::process] read 66568 sequences (10000257 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (10, 24217, 2, 1)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (162, 296, 375)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 801)
[M::mem_pestat] mean and std.dev: (273.80, 158.55)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1014)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 511, 585)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 875)
[M::mem_pestat] mean and std.dev: (512.19, 111.42)
[M::mem_pestat] low and high boundaries for proper pairs: (5, 1020)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66604 reads in 8.861 CPU sec, 8.709 real sec
[M::process] read 66590 sequences (10000001 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (14, 24438, 1, 4)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (94, 155, 266)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 610)
[M::mem_pestat] mean and std.dev: (181.23, 112.25)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 782)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 512, 587)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (152, 877)
[M::mem_pestat] mean and std.dev: (513.93, 113.55)
[M::mem_pestat] low and high boundaries for proper pairs: (7, 1022)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66568 reads in 8.777 CPU sec, 8.619 real sec
[M::process] read 2130 sequences (319671 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (17, 24420, 0, 4)
[M::mem_pestat] analyzing insert size distribution for orientation FF...
[M::mem_pestat] (25, 50, 75) percentile: (135, 230, 393)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 909)
[M::mem_pestat] mean and std.dev: (207.20, 118.79)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1167)
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (442, 513, 588)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 880)
[M::mem_pestat] mean and std.dev: (513.73, 112.66)
[M::mem_pestat] low and high boundaries for proper pairs: (4, 1026)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation FF
[M::mem_process_seqs] Processed 66590 reads in 8.721 CPU sec, 8.673 real sec
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (0, 788, 1, 1)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (436, 510, 593)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (122, 907)
[M::mem_pestat] mean and std.dev: (512.71, 114.49)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1064)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 2130 reads in 0.324 CPU sec, 0.292 real sec
[main] Version: 0.7.17-r1188
[main] CMD: bwa mem data/assembly/scaffolds.fasta data/reads/L2.R1.fastq.gz data/reads/L2.R2.fastq.gz
[main] Real time: 269.004 sec; CPU: 273.515 sec
[M::bwa_idx_load_from_disk] read 0 ALT contigs
[M::process] read 66528 sequences (10000159 bp)...
[M::process] read 66552 sequences (10000238 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 24043, 1, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (450, 527, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (138, 918)
[M::mem_pestat] mean and std.dev: (525.19, 120.48)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1074)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66528 reads in 8.913 CPU sec, 8.790 real sec
[M::process] read 66540 sequences (10000056 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24019, 2, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (449, 525, 604)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (139, 914)
[M::mem_pestat] mean and std.dev: (523.96, 120.77)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1069)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66552 reads in 8.845 CPU sec, 8.690 real sec
[M::process] read 66558 sequences (10000287 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 24023, 4, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (448, 524, 600)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 904)
[M::mem_pestat] mean and std.dev: (522.30, 117.91)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1056)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66540 reads in 8.857 CPU sec, 8.698 real sec
[M::process] read 66556 sequences (10000112 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 23785, 5, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (450, 523, 601)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 903)
[M::mem_pestat] mean and std.dev: (523.30, 117.85)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1054)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66558 reads in 8.991 CPU sec, 8.844 real sec
[M::process] read 66570 sequences (10000269 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (9, 23804, 4, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 522, 598)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (145, 900)
[M::mem_pestat] mean and std.dev: (520.98, 117.87)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1051)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66556 reads in 9.097 CPU sec, 8.941 real sec
[M::process] read 66564 sequences (10000270 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 23876, 4, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (444, 521, 598)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (136, 906)
[M::mem_pestat] mean and std.dev: (519.03, 119.64)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1060)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66570 reads in 8.900 CPU sec, 8.746 real sec
[M::process] read 66596 sequences (10000235 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 23903, 5, 1)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 522, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 903)
[M::mem_pestat] mean and std.dev: (520.32, 117.96)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1055)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66564 reads in 8.834 CPU sec, 8.679 real sec
[M::process] read 66568 sequences (10000250 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 23881, 1, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (446, 521, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (140, 905)
[M::mem_pestat] mean and std.dev: (520.10, 118.59)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1058)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66596 reads in 8.996 CPU sec, 8.840 real sec
[M::process] read 66584 sequences (10000044 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (9, 23934, 1, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (448, 522, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 901)
[M::mem_pestat] mean and std.dev: (520.74, 117.46)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1052)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66568 reads in 9.034 CPU sec, 8.878 real sec
[M::process] read 66594 sequences (10000278 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 23900, 2, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (446, 522, 600)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (138, 908)
[M::mem_pestat] mean and std.dev: (519.96, 118.88)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1062)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66584 reads in 8.946 CPU sec, 8.789 real sec
[M::process] read 66596 sequences (10000197 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 23708, 6, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (446, 522, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (140, 905)
[M::mem_pestat] mean and std.dev: (520.47, 118.11)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1058)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66594 reads in 9.100 CPU sec, 8.949 real sec
[M::process] read 66572 sequences (10000202 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 23797, 2, 9)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (448, 524, 600)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 904)
[M::mem_pestat] mean and std.dev: (521.91, 118.63)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1056)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66596 reads in 8.958 CPU sec, 8.802 real sec
[M::process] read 66578 sequences (10000257 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 23780, 2, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 522, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 903)
[M::mem_pestat] mean and std.dev: (521.12, 118.58)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1055)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66572 reads in 8.958 CPU sec, 8.803 real sec
[M::process] read 66586 sequences (10000232 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (8, 23865, 2, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (448, 525, 602)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (140, 910)
[M::mem_pestat] mean and std.dev: (523.02, 118.60)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1064)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66578 reads in 9.066 CPU sec, 8.910 real sec
[M::process] read 66602 sequences (10000001 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 23841, 3, 1)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 524, 600)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (141, 906)
[M::mem_pestat] mean and std.dev: (521.64, 119.04)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1059)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66586 reads in 8.984 CPU sec, 8.828 real sec
[M::process] read 66606 sequences (10000143 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 23722, 3, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 522, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 903)
[M::mem_pestat] mean and std.dev: (520.82, 118.92)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1055)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66602 reads in 9.177 CPU sec, 9.024 real sec
[M::process] read 66594 sequences (10000045 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 24024, 2, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (446, 521, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (140, 905)
[M::mem_pestat] mean and std.dev: (520.21, 118.83)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1058)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66606 reads in 9.372 CPU sec, 9.217 real sec
[M::process] read 66588 sequences (10000040 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 23699, 0, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 522, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 903)
[M::mem_pestat] mean and std.dev: (520.69, 118.69)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1055)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66594 reads in 9.517 CPU sec, 9.363 real sec
[M::process] read 66596 sequences (10000161 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 23914, 3, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 523, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 903)
[M::mem_pestat] mean and std.dev: (520.21, 118.47)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1055)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66588 reads in 8.957 CPU sec, 8.802 real sec
[M::process] read 66578 sequences (10000006 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 23716, 1, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 523, 601)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (139, 909)
[M::mem_pestat] mean and std.dev: (521.74, 118.61)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1063)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66596 reads in 9.017 CPU sec, 8.861 real sec
[M::process] read 66606 sequences (10000203 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 23779, 3, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (446, 521, 600)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (138, 908)
[M::mem_pestat] mean and std.dev: (520.66, 118.35)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1062)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66578 reads in 8.928 CPU sec, 8.774 real sec
[M::process] read 66592 sequences (10000181 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 23888, 1, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (449, 524, 600)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 902)
[M::mem_pestat] mean and std.dev: (522.70, 116.93)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1053)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66606 reads in 8.973 CPU sec, 8.817 real sec
[M::process] read 66578 sequences (10000047 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (7, 23750, 3, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (449, 524, 600)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 902)
[M::mem_pestat] mean and std.dev: (522.45, 117.98)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1053)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66592 reads in 9.010 CPU sec, 8.854 real sec
[M::process] read 66576 sequences (10000284 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 23900, 5, 0)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (448, 522, 600)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 904)
[M::mem_pestat] mean and std.dev: (521.53, 117.71)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1056)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66578 reads in 8.954 CPU sec, 8.798 real sec
[M::process] read 66604 sequences (10000263 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 24079, 4, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (448, 522, 598)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 898)
[M::mem_pestat] mean and std.dev: (520.36, 117.08)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1048)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66576 reads in 8.990 CPU sec, 8.846 real sec
[M::process] read 66586 sequences (10000027 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 23938, 5, 10)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (445, 521, 599)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (137, 907)
[M::mem_pestat] mean and std.dev: (519.64, 118.90)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1061)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (4, 6, 11)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 25)
[M::mem_pestat] mean and std.dev: (5.38, 2.64)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 32)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66604 reads in 8.926 CPU sec, 8.769 real sec
[M::process] read 66584 sequences (10000136 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 23800, 2, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (446, 521, 597)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 899)
[M::mem_pestat] mean and std.dev: (518.50, 117.05)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1050)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66586 reads in 9.010 CPU sec, 8.851 real sec
[M::process] read 66576 sequences (10000063 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 23772, 6, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 521, 596)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (149, 894)
[M::mem_pestat] mean and std.dev: (518.68, 116.52)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1043)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66584 reads in 9.314 CPU sec, 9.155 real sec
[M::process] read 66588 sequences (10000101 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 23833, 0, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (445, 519, 594)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 892)
[M::mem_pestat] mean and std.dev: (517.07, 116.11)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1041)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66576 reads in 9.347 CPU sec, 9.186 real sec
[M::process] read 2604 sequences (390762 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 23810, 3, 1)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (447, 521, 596)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (149, 894)
[M::mem_pestat] mean and std.dev: (518.78, 115.03)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1043)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66588 reads in 9.150 CPU sec, 9.099 real sec
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (0, 960, 0, 0)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (440, 522, 596)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (128, 908)
[M::mem_pestat] mean and std.dev: (515.49, 116.38)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1064)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 2604 reads in 0.404 CPU sec, 0.362 real sec
[main] Version: 0.7.17-r1188
[main] CMD: bwa mem data/assembly/scaffolds.fasta data/reads/L3.R1.fastq.gz data/reads/L3.R2.fastq.gz
[main] Real time: 267.236 sec; CPU: 271.757 sec
[M::bwa_idx_load_from_disk] read 0 ALT contigs
[M::process] read 66556 sequences (10000032 bp)...
[M::process] read 66566 sequences (10000081 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16862, 7, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (456, 530, 611)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 921)
[M::mem_pestat] mean and std.dev: (531.82, 119.53)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1076)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66556 reads in 10.234 CPU sec, 10.120 real sec
[M::process] read 66618 sequences (10000274 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16672, 4, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 530, 611)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (140, 925)
[M::mem_pestat] mean and std.dev: (531.18, 119.25)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1082)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66566 reads in 10.270 CPU sec, 10.112 real sec
[M::process] read 66614 sequences (10000288 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16630, 4, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 529, 608)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 916)
[M::mem_pestat] mean and std.dev: (530.70, 118.34)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1070)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66618 reads in 10.196 CPU sec, 10.039 real sec
[M::process] read 66660 sequences (10000127 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 16585, 6, 12)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 528, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 913)
[M::mem_pestat] mean and std.dev: (528.45, 117.64)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (5, 6, 10)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 20)
[M::mem_pestat] mean and std.dev: (5.91, 2.39)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 25)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66614 reads in 10.257 CPU sec, 10.100 real sec
[M::process] read 66662 sequences (10000215 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16717, 6, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 530, 608)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 918)
[M::mem_pestat] mean and std.dev: (529.20, 118.85)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1073)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66660 reads in 10.291 CPU sec, 10.133 real sec
[M::process] read 66688 sequences (10000147 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16365, 6, 13)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 528, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (145, 915)
[M::mem_pestat] mean and std.dev: (528.76, 118.42)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1069)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (5, 6, 331)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 983)
[M::mem_pestat] mean and std.dev: (35.09, 93.60)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1309)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66662 reads in 10.375 CPU sec, 10.219 real sec
[M::process] read 66660 sequences (10000202 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16484, 8, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 529, 608)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 916)
[M::mem_pestat] mean and std.dev: (529.08, 118.09)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1070)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66688 reads in 10.367 CPU sec, 10.222 real sec
[M::process] read 66676 sequences (10000252 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16462, 7, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 529, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (141, 921)
[M::mem_pestat] mean and std.dev: (529.46, 119.43)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1077)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66660 reads in 10.380 CPU sec, 10.223 real sec
[M::process] read 66696 sequences (10000199 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16575, 13, 10)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (455, 529, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (153, 908)
[M::mem_pestat] mean and std.dev: (529.52, 116.79)
[M::mem_pestat] low and high boundaries for proper pairs: (2, 1059)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (2141, 4238, 6139)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 14135)
[M::mem_pestat] mean and std.dev: (3585.15, 2123.65)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 18133)
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (3, 5, 7)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 15)
[M::mem_pestat] mean and std.dev: (4.44, 2.01)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 19)
[M::mem_pestat] skip orientation RF
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66676 reads in 10.325 CPU sec, 10.168 real sec
[M::process] read 66706 sequences (10000232 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 16436, 15, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 529, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (141, 921)
[M::mem_pestat] mean and std.dev: (529.14, 119.51)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1077)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (174, 1773, 3950)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 11502)
[M::mem_pestat] mean and std.dev: (2062.87, 2040.45)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 15278)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66696 reads in 10.318 CPU sec, 10.164 real sec
[M::process] read 66718 sequences (10000136 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16604, 9, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (456, 532, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 915)
[M::mem_pestat] mean and std.dev: (531.05, 116.78)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1068)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66706 reads in 10.237 CPU sec, 10.082 real sec
[M::process] read 66672 sequences (10000267 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 16434, 8, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (450, 526, 604)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (142, 912)
[M::mem_pestat] mean and std.dev: (525.82, 118.36)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66718 reads in 10.346 CPU sec, 10.191 real sec
[M::process] read 66716 sequences (10000204 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 16490, 3, 9)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 528, 608)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 918)
[M::mem_pestat] mean and std.dev: (528.47, 119.06)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1073)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66672 reads in 10.385 CPU sec, 10.229 real sec
[M::process] read 66726 sequences (10000274 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 16512, 14, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 528, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 910)
[M::mem_pestat] mean and std.dev: (528.54, 117.00)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1062)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (292, 3950, 4408)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 12640)
[M::mem_pestat] mean and std.dev: (2702.71, 2460.25)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 16756)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66716 reads in 10.340 CPU sec, 10.183 real sec
[M::process] read 66704 sequences (10000122 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 16635, 5, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (451, 527, 605)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 913)
[M::mem_pestat] mean and std.dev: (527.63, 118.52)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1067)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66726 reads in 10.269 CPU sec, 10.114 real sec
[M::process] read 66704 sequences (10000251 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16390, 5, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (456, 528, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (156, 906)
[M::mem_pestat] mean and std.dev: (529.16, 115.46)
[M::mem_pestat] low and high boundaries for proper pairs: (6, 1056)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66704 reads in 10.348 CPU sec, 10.193 real sec
[M::process] read 66704 sequences (10000161 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16593, 7, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (455, 531, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (151, 911)
[M::mem_pestat] mean and std.dev: (530.05, 117.17)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1063)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66704 reads in 10.402 CPU sec, 10.259 real sec
[M::process] read 66702 sequences (10000279 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16690, 5, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (452, 528, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 914)
[M::mem_pestat] mean and std.dev: (528.41, 117.90)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1068)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66704 reads in 10.351 CPU sec, 10.195 real sec
[M::process] read 66708 sequences (10000184 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16404, 6, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 528, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (145, 915)
[M::mem_pestat] mean and std.dev: (528.75, 117.97)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1069)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66702 reads in 10.483 CPU sec, 10.331 real sec
[M::process] read 66728 sequences (10000282 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16590, 5, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 527, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 910)
[M::mem_pestat] mean and std.dev: (528.60, 117.74)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1062)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66708 reads in 10.392 CPU sec, 10.238 real sec
[M::process] read 66688 sequences (10000273 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16770, 11, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (452, 528, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 914)
[M::mem_pestat] mean and std.dev: (528.29, 117.62)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1068)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (1762, 2203, 4700)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 10576)
[M::mem_pestat] mean and std.dev: (2889.73, 2149.98)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 13514)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66728 reads in 10.332 CPU sec, 10.179 real sec
[M::process] read 66692 sequences (10000209 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 16512, 7, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 528, 605)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (149, 909)
[M::mem_pestat] mean and std.dev: (527.72, 117.90)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1061)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66688 reads in 10.389 CPU sec, 10.234 real sec
[M::process] read 66700 sequences (10000065 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (0, 16638, 5, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 528, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 912)
[M::mem_pestat] mean and std.dev: (527.98, 117.92)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1065)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66692 reads in 10.313 CPU sec, 10.159 real sec
[M::process] read 66686 sequences (10000257 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16687, 2, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (452, 528, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (142, 917)
[M::mem_pestat] mean and std.dev: (528.34, 118.11)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1072)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66700 reads in 10.349 CPU sec, 10.194 real sec
[M::process] read 66682 sequences (10000226 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 16628, 6, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 528, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 912)
[M::mem_pestat] mean and std.dev: (528.41, 117.14)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1065)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66686 reads in 10.329 CPU sec, 10.176 real sec
[M::process] read 66680 sequences (10000183 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 16534, 8, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (450, 526, 604)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (142, 912)
[M::mem_pestat] mean and std.dev: (526.57, 117.47)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66682 reads in 10.481 CPU sec, 10.325 real sec
[M::process] read 66682 sequences (10000021 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 16727, 3, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (451, 526, 604)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (145, 910)
[M::mem_pestat] mean and std.dev: (526.27, 117.24)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1063)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66680 reads in 11.102 CPU sec, 10.939 real sec
[M::process] read 66686 sequences (10000104 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16610, 12, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (451, 525, 602)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (149, 904)
[M::mem_pestat] mean and std.dev: (525.03, 115.21)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1055)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (206, 4481, 6235)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 18293)
[M::mem_pestat] mean and std.dev: (3432.50, 2567.78)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 24322)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66682 reads in 11.120 CPU sec, 10.980 real sec
[M::process] read 66320 sequences (9949919 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 16397, 10, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (452, 526, 602)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (152, 902)
[M::mem_pestat] mean and std.dev: (525.95, 114.80)
[M::mem_pestat] low and high boundaries for proper pairs: (2, 1052)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (256, 4232, 4562)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 13174)
[M::mem_pestat] mean and std.dev: (2432.20, 2222.24)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 17480)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66686 reads in 11.019 CPU sec, 10.864 real sec
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 16462, 5, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (452, 525, 604)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 908)
[M::mem_pestat] mean and std.dev: (525.89, 115.76)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1060)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66320 reads in 10.407 CPU sec, 10.368 real sec
[main] Version: 0.7.17-r1188
[main] CMD: bwa mem data/assembly/scaffolds.fasta data/reads/P1.R1.fastq.gz data/reads/P1.R2.fastq.gz
[main] Real time: 308.526 sec; CPU: 312.671 sec
[M::bwa_idx_load_from_disk] read 0 ALT contigs
[M::process] read 66554 sequences (10000007 bp)...
[M::process] read 66592 sequences (10000066 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 18261, 6, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 532, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (138, 928)
[M::mem_pestat] mean and std.dev: (530.77, 121.50)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1086)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66554 reads in 9.599 CPU sec, 9.476 real sec
[M::process] read 66618 sequences (10000153 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (0, 18207, 6, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 531, 611)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (140, 925)
[M::mem_pestat] mean and std.dev: (529.76, 121.33)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1082)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66592 reads in 9.512 CPU sec, 9.356 real sec
[M::process] read 66614 sequences (10000052 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 18408, 10, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (457, 534, 610)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (151, 916)
[M::mem_pestat] mean and std.dev: (531.90, 119.93)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1069)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (93, 1233, 1973)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 5733)
[M::mem_pestat] mean and std.dev: (1271.70, 1404.13)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 7613)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66618 reads in 9.514 CPU sec, 9.358 real sec
[M::process] read 66644 sequences (10000248 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (0, 18325, 13, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (456, 533, 610)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 918)
[M::mem_pestat] mean and std.dev: (530.22, 119.89)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1072)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (149, 637, 4168)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 12206)
[M::mem_pestat] mean and std.dev: (1803.31, 2277.67)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 16225)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66614 reads in 9.565 CPU sec, 9.409 real sec
[M::process] read 66686 sequences (10000281 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 18206, 15, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (456, 532, 608)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (152, 912)
[M::mem_pestat] mean and std.dev: (530.61, 118.73)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1064)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (207, 445, 3103)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 8895)
[M::mem_pestat] mean and std.dev: (1311.60, 1533.54)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 11791)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66644 reads in 9.608 CPU sec, 9.452 real sec
[M::process] read 66686 sequences (10000241 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 18237, 10, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (456, 533, 611)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 921)
[M::mem_pestat] mean and std.dev: (531.00, 121.01)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1076)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (103, 3459, 3979)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 11731)
[M::mem_pestat] mean and std.dev: (2432.40, 2090.84)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 15607)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66686 reads in 9.521 CPU sec, 9.368 real sec
[M::process] read 66712 sequences (10000266 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 18300, 4, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (458, 533, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 920)
[M::mem_pestat] mean and std.dev: (533.16, 118.15)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1074)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66686 reads in 9.618 CPU sec, 9.464 real sec
[M::process] read 66702 sequences (10000078 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 18130, 9, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 533, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (144, 919)
[M::mem_pestat] mean and std.dev: (530.11, 120.88)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1074)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66712 reads in 9.579 CPU sec, 9.426 real sec
[M::process] read 66730 sequences (10000112 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 18274, 8, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (455, 532, 610)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (145, 920)
[M::mem_pestat] mean and std.dev: (530.59, 119.67)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1075)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66702 reads in 9.584 CPU sec, 9.431 real sec
[M::process] read 66686 sequences (10000095 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 18286, 6, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 531, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 913)
[M::mem_pestat] mean and std.dev: (528.24, 118.68)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66730 reads in 9.537 CPU sec, 9.381 real sec
[M::process] read 66732 sequences (10000248 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 18172, 8, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 530, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 913)
[M::mem_pestat] mean and std.dev: (528.24, 119.46)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66686 reads in 9.574 CPU sec, 9.423 real sec
[M::process] read 66726 sequences (10000094 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 18258, 8, 11)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 531, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 913)
[M::mem_pestat] mean and std.dev: (529.07, 119.18)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (8, 8, 156)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 452)
[M::mem_pestat] mean and std.dev: (52.50, 99.80)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 600)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66732 reads in 9.573 CPU sec, 9.418 real sec
[M::process] read 66702 sequences (10000251 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 18169, 9, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 531, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (141, 921)
[M::mem_pestat] mean and std.dev: (528.68, 121.33)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1077)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66726 reads in 9.765 CPU sec, 9.618 real sec
[M::process] read 66684 sequences (10000111 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 18303, 9, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (456, 532, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 915)
[M::mem_pestat] mean and std.dev: (530.38, 119.21)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1068)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66702 reads in 9.568 CPU sec, 9.411 real sec
[M::process] read 66696 sequences (10000093 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 18305, 7, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 530, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 913)
[M::mem_pestat] mean and std.dev: (528.11, 119.63)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66684 reads in 9.591 CPU sec, 9.438 real sec
[M::process] read 66692 sequences (10000092 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (0, 18194, 7, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (455, 532, 605)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (155, 905)
[M::mem_pestat] mean and std.dev: (527.92, 117.99)
[M::mem_pestat] low and high boundaries for proper pairs: (5, 1055)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66696 reads in 9.650 CPU sec, 9.495 real sec
[M::process] read 66708 sequences (10000173 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 18353, 9, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 530, 608)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 916)
[M::mem_pestat] mean and std.dev: (528.25, 120.05)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1070)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66692 reads in 9.545 CPU sec, 9.390 real sec
[M::process] read 66718 sequences (10000155 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 18314, 8, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (457, 534, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 922)
[M::mem_pestat] mean and std.dev: (532.64, 119.35)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1077)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66708 reads in 9.640 CPU sec, 9.482 real sec
[M::process] read 66756 sequences (10000113 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 18228, 9, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (457, 534, 610)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (151, 916)
[M::mem_pestat] mean and std.dev: (531.23, 119.07)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1069)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66718 reads in 9.541 CPU sec, 9.389 real sec
[M::process] read 66726 sequences (10000225 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 18186, 5, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (455, 530, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (151, 911)
[M::mem_pestat] mean and std.dev: (529.95, 116.95)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1063)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66756 reads in 9.611 CPU sec, 9.455 real sec
[M::process] read 66696 sequences (10000157 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 18295, 6, 10)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 532, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (145, 915)
[M::mem_pestat] mean and std.dev: (528.26, 120.28)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1069)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (5, 7, 597)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1781)
[M::mem_pestat] mean and std.dev: (79.62, 195.56)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 2373)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66726 reads in 9.545 CPU sec, 9.388 real sec
[M::process] read 66744 sequences (10000200 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 18407, 5, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 530, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (145, 915)
[M::mem_pestat] mean and std.dev: (527.85, 119.63)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1069)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66696 reads in 9.515 CPU sec, 9.360 real sec
[M::process] read 66706 sequences (10000269 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 18441, 7, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (456, 532, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 915)
[M::mem_pestat] mean and std.dev: (529.83, 119.16)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1068)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66744 reads in 9.568 CPU sec, 9.411 real sec
[M::process] read 66716 sequences (10000200 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 18200, 8, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (455, 531, 608)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (149, 914)
[M::mem_pestat] mean and std.dev: (529.85, 118.80)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1067)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66706 reads in 9.685 CPU sec, 9.529 real sec
[M::process] read 66718 sequences (10000016 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 18319, 10, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 532, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 913)
[M::mem_pestat] mean and std.dev: (529.17, 119.59)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (93, 889, 4609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 13641)
[M::mem_pestat] mean and std.dev: (1918.40, 2283.80)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 18157)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66716 reads in 9.542 CPU sec, 9.387 real sec
[M::process] read 66690 sequences (10000153 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 18286, 6, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (453, 530, 606)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 912)
[M::mem_pestat] mean and std.dev: (527.61, 117.92)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1065)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66718 reads in 9.568 CPU sec, 9.418 real sec
[M::process] read 66702 sequences (10000222 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (8, 18243, 6, 11)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (457, 531, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (157, 907)
[M::mem_pestat] mean and std.dev: (530.01, 117.70)
[M::mem_pestat] low and high boundaries for proper pairs: (7, 1057)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (100, 243, 586)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1558)
[M::mem_pestat] mean and std.dev: (220.44, 198.35)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 2044)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66690 reads in 9.595 CPU sec, 9.441 real sec
[M::process] read 66718 sequences (10000205 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 18247, 3, 10)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 529, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 913)
[M::mem_pestat] mean and std.dev: (527.77, 118.22)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (5, 8, 13)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 29)
[M::mem_pestat] mean and std.dev: (7.50, 3.08)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 37)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66702 reads in 9.664 CPU sec, 9.515 real sec
[M::process] read 65946 sequences (9883488 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (7, 18118, 6, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 530, 607)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 913)
[M::mem_pestat] mean and std.dev: (527.62, 118.72)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66718 reads in 9.861 CPU sec, 9.704 real sec
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 18152, 7, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (451, 528, 605)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (143, 913)
[M::mem_pestat] mean and std.dev: (525.56, 117.66)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1067)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 65946 reads in 9.468 CPU sec, 9.423 real sec
[main] Version: 0.7.17-r1188
[main] CMD: bwa mem data/assembly/scaffolds.fasta data/reads/P2.R1.fastq.gz data/reads/P2.R2.fastq.gz
[main] Real time: 283.812 sec; CPU: 287.979 sec
[M::bwa_idx_load_from_disk] read 0 ALT contigs
[M::process] read 66632 sequences (10000229 bp)...
[M::process] read 66630 sequences (10000134 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 17697, 6, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (459, 537, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (153, 918)
[M::mem_pestat] mean and std.dev: (533.25, 118.49)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1071)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66632 reads in 9.939 CPU sec, 9.815 real sec
[M::process] read 66668 sequences (10000273 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 17616, 7, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (460, 537, 611)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (158, 913)
[M::mem_pestat] mean and std.dev: (532.93, 117.18)
[M::mem_pestat] low and high boundaries for proper pairs: (7, 1064)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66630 reads in 9.974 CPU sec, 9.820 real sec
[M::process] read 66674 sequences (10000163 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 17561, 4, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (458, 536, 611)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (152, 917)
[M::mem_pestat] mean and std.dev: (532.08, 119.08)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1070)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66668 reads in 9.989 CPU sec, 9.832 real sec
[M::process] read 66722 sequences (10000027 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 17326, 5, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (460, 537, 613)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (154, 919)
[M::mem_pestat] mean and std.dev: (533.12, 119.78)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1072)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66674 reads in 10.150 CPU sec, 9.990 real sec
[M::process] read 66738 sequences (10000104 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 17199, 8, 9)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (459, 537, 613)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (151, 921)
[M::mem_pestat] mean and std.dev: (533.26, 119.32)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1075)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66722 reads in 9.986 CPU sec, 9.826 real sec
[M::process] read 66732 sequences (10000110 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 17366, 6, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (457, 534, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (147, 922)
[M::mem_pestat] mean and std.dev: (530.64, 119.50)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1077)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66738 reads in 9.949 CPU sec, 9.793 real sec
[M::process] read 66758 sequences (10000284 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 17290, 6, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (458, 538, 614)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (146, 926)
[M::mem_pestat] mean and std.dev: (532.54, 120.90)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1082)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66732 reads in 10.060 CPU sec, 9.906 real sec
[M::process] read 66734 sequences (10000041 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 17335, 8, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (458, 537, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 920)
[M::mem_pestat] mean and std.dev: (533.05, 119.05)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1074)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66758 reads in 10.057 CPU sec, 9.901 real sec
[M::process] read 66736 sequences (10000003 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (9, 17482, 9, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (459, 538, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (153, 918)
[M::mem_pestat] mean and std.dev: (532.81, 117.62)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1071)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66734 reads in 9.989 CPU sec, 9.834 real sec
[M::process] read 66736 sequences (10000084 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 17351, 6, 12)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (459, 536, 610)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (157, 912)
[M::mem_pestat] mean and std.dev: (531.81, 118.11)
[M::mem_pestat] low and high boundaries for proper pairs: (6, 1063)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (5, 6, 456)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 1358)
[M::mem_pestat] mean and std.dev: (78.10, 150.03)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1809)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66736 reads in 9.952 CPU sec, 9.796 real sec
[M::process] read 66714 sequences (10000178 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 17585, 3, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (460, 538, 614)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (152, 922)
[M::mem_pestat] mean and std.dev: (534.08, 119.04)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1076)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66736 reads in 10.042 CPU sec, 9.884 real sec
[M::process] read 66746 sequences (10000238 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 17449, 4, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (460, 538, 614)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (152, 922)
[M::mem_pestat] mean and std.dev: (534.11, 118.50)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1076)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66714 reads in 10.013 CPU sec, 9.854 real sec
[M::process] read 66734 sequences (10000025 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (0, 17633, 9, 10)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (461, 538, 611)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (161, 911)
[M::mem_pestat] mean and std.dev: (534.33, 117.79)
[M::mem_pestat] low and high boundaries for proper pairs: (11, 1061)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (4, 5, 7)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 13)
[M::mem_pestat] mean and std.dev: (4.62, 1.22)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 16)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66746 reads in 10.024 CPU sec, 9.870 real sec
[M::process] read 66746 sequences (10000121 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 17598, 7, 12)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (462, 540, 616)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (154, 924)
[M::mem_pestat] mean and std.dev: (536.60, 119.18)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1078)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (6, 9, 3813)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 11427)
[M::mem_pestat] mean and std.dev: (1246.33, 2119.91)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 15234)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66734 reads in 10.030 CPU sec, 9.880 real sec
[M::process] read 66728 sequences (10000019 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 17576, 11, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (460, 537, 614)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (152, 922)
[M::mem_pestat] mean and std.dev: (534.72, 119.09)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1076)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (3160, 4106, 5773)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 10999)
[M::mem_pestat] mean and std.dev: (3669.27, 1987.62)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 13612)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66746 reads in 10.148 CPU sec, 9.993 real sec
[M::process] read 66762 sequences (10000278 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 17403, 12, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (458, 535, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 920)
[M::mem_pestat] mean and std.dev: (532.04, 118.37)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1074)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (240, 2188, 5096)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 14808)
[M::mem_pestat] mean and std.dev: (2312.92, 2079.32)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 19664)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66728 reads in 10.129 CPU sec, 9.974 real sec
[M::process] read 66764 sequences (10000154 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (7, 17606, 7, 8)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (458, 536, 613)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (148, 923)
[M::mem_pestat] mean and std.dev: (532.58, 119.79)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1078)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66762 reads in 9.993 CPU sec, 9.838 real sec
[M::process] read 66720 sequences (10000212 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 17683, 5, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (461, 538, 614)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (155, 920)
[M::mem_pestat] mean and std.dev: (535.18, 118.15)
[M::mem_pestat] low and high boundaries for proper pairs: (2, 1073)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66764 reads in 10.029 CPU sec, 9.874 real sec
[M::process] read 66724 sequences (10000158 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (2, 17622, 8, 10)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (459, 536, 613)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (151, 921)
[M::mem_pestat] mean and std.dev: (532.95, 120.01)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1075)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation RR...
[M::mem_pestat] (25, 50, 75) percentile: (1, 6, 9)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 25)
[M::mem_pestat] mean and std.dev: (4.38, 3.00)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 33)
[M::mem_pestat] skip orientation RR
[M::mem_process_seqs] Processed 66720 reads in 10.052 CPU sec, 9.896 real sec
[M::process] read 66738 sequences (10000088 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (7, 17451, 4, 9)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (460, 536, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (162, 907)
[M::mem_pestat] mean and std.dev: (532.46, 116.34)
[M::mem_pestat] low and high boundaries for proper pairs: (13, 1056)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66724 reads in 10.147 CPU sec, 9.996 real sec
[M::process] read 66714 sequences (10000015 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 17442, 6, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (461, 538, 613)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (157, 917)
[M::mem_pestat] mean and std.dev: (533.91, 117.75)
[M::mem_pestat] low and high boundaries for proper pairs: (5, 1069)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66738 reads in 10.087 CPU sec, 9.930 real sec
[M::process] read 66702 sequences (10000031 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (3, 17414, 7, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (458, 535, 612)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (150, 920)
[M::mem_pestat] mean and std.dev: (531.93, 118.10)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1074)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66714 reads in 10.024 CPU sec, 9.867 real sec
[M::process] read 66714 sequences (10000167 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 17414, 11, 5)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (457, 535, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (153, 913)
[M::mem_pestat] mean and std.dev: (530.87, 117.74)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1065)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (365, 1149, 4541)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 12893)
[M::mem_pestat] mean and std.dev: (2249.45, 2330.74)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 17069)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66702 reads in 10.357 CPU sec, 10.199 real sec
[M::process] read 66718 sequences (10000262 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (7, 17389, 6, 4)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (457, 534, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (153, 913)
[M::mem_pestat] mean and std.dev: (529.89, 117.24)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 1065)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66714 reads in 10.222 CPU sec, 10.066 real sec
[M::process] read 66710 sequences (10000189 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 17398, 6, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (459, 535, 609)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (159, 909)
[M::mem_pestat] mean and std.dev: (531.18, 116.05)
[M::mem_pestat] low and high boundaries for proper pairs: (9, 1059)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66718 reads in 10.133 CPU sec, 9.973 real sec
[M::process] read 66724 sequences (10000239 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (5, 17641, 6, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (458, 535, 610)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (154, 914)
[M::mem_pestat] mean and std.dev: (532.07, 116.91)
[M::mem_pestat] low and high boundaries for proper pairs: (2, 1066)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66710 reads in 10.133 CPU sec, 9.973 real sec
[M::process] read 66722 sequences (10000093 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 17495, 2, 7)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (459, 536, 611)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (155, 915)
[M::mem_pestat] mean and std.dev: (532.84, 116.09)
[M::mem_pestat] low and high boundaries for proper pairs: (3, 1067)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66724 reads in 10.198 CPU sec, 10.040 real sec
[M::process] read 66708 sequences (10000136 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (6, 17517, 10, 2)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (454, 531, 603)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (156, 901)
[M::mem_pestat] mean and std.dev: (525.70, 114.49)
[M::mem_pestat] low and high boundaries for proper pairs: (7, 1050)
[M::mem_pestat] analyzing insert size distribution for orientation RF...
[M::mem_pestat] (25, 50, 75) percentile: (88, 363, 3138)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (1, 9238)
[M::mem_pestat] mean and std.dev: (1709.40, 2197.35)
[M::mem_pestat] low and high boundaries for proper pairs: (1, 12288)
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_pestat] skip orientation RF
[M::mem_process_seqs] Processed 66722 reads in 10.142 CPU sec, 9.982 real sec
[M::process] read 65152 sequences (9763689 bp)...
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (4, 17427, 3, 6)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (455, 532, 604)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (157, 902)
[M::mem_pestat] mean and std.dev: (526.37, 114.50)
[M::mem_pestat] low and high boundaries for proper pairs: (8, 1051)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 66708 reads in 10.190 CPU sec, 10.043 real sec
[M::mem_pestat] # candidate unique pairs for (FF, FR, RF, RR): (1, 17109, 9, 3)
[M::mem_pestat] skip orientation FF as there are not enough pairs
[M::mem_pestat] analyzing insert size distribution for orientation FR...
[M::mem_pestat] (25, 50, 75) percentile: (455, 532, 602)
[M::mem_pestat] low and high boundaries for computing mean and std.dev: (161, 896)
[M::mem_pestat] mean and std.dev: (526.37, 112.95)
[M::mem_pestat] low and high boundaries for proper pairs: (14, 1043)
[M::mem_pestat] skip orientation RF as there are not enough pairs
[M::mem_pestat] skip orientation RR as there are not enough pairs
[M::mem_process_seqs] Processed 65152 reads in 9.829 CPU sec, 9.783 real sec
[main] Version: 0.7.17-r1188
[main] CMD: bwa mem data/assembly/scaffolds.fasta data/reads/P3.R1.fastq.gz data/reads/P3.R2.fastq.gz
[main] Real time: 298.032 sec; CPU: 302.234 sec

TIP: If you are working on your own computer and not some shared server, you can speed up the process substantially by using more threads (CPUs/cores) to do the mapping. Find the amount of cores available on your computer with nproc and read the bwa manual to use more threads.

[DO:] If the loop is running, then proceed to the next notebook. Check with ls if your files are being created and perhaps if they increase in size over time. Then start preparing the next loop: sorting of the bam files.

Some background:

By default, mapping algorithms like bwa spit out a .sam file. The sam format is widely used and accepted by many different downstream programmes. Basically, it's just a big table with a standardised format. Although a sam file is human-readable, it is also rather bulky. The file size of a single SAM file will quickly exceed the disk space you have on this virtual machine. Therefore, we convert it to a BAM file, a Binary sAM file. There is no loss of information; it is just saved much more efficiently. Naturally, a binary file is not human readable. Always store your files as bam files. If you need to have a look in the bam file, you can view them using samtools view or any of the many downstream programmes available online.