Skip to content

Commit

Permalink
Merge pull request #105 from Cristianetaniguti/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Cristianetaniguti authored Jul 13, 2023
2 parents 25aa852 + c42316e commit a202c7c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Check how to evaluate the workflows results in Reads2MapApp Shiny (so far only a

Check more information and examples of usage in:

* [Taniguti, C. H., Taniguti, L. M., Amadeu, R. R., Mollinari, M., Da, G., Pereira, S., Riera-Lizarazu, O., Lau, J., Byrne, D., de Siqueira Gesteira, G., De, T., Oliveira, P., Ferreira, G. C., & Franco Garcia, A. A. Developing best practices for genotyping-by-sequencing analysis using linkage maps as benchmarks. BioRxiv. https://doi.org/10.1101/2022.11.24.517847](https://www.biorxiv.org/content/10.1101/2022.11.24.517847v2)
* [Taniguti, C. H.; Taniguti, L. M.; Amadeu, R. R.; Lau, J.; de Siqueira Gesteira, G.; Oliveira, T. de P.; Ferreira, G. C.; Pereira, G. da S.; Byrne, D.; Mollinari, M.; Riera-Lizarazu, O.; Garcia, A. A. F. Developing best practices for genotyping-by-sequencing analysis using linkage maps as benchmarks. BioRxiv. https://doi.org/10.1101/2022.11.24.517847](https://www.biorxiv.org/content/10.1101/2022.11.24.517847v3)

## Third-party software and images

Expand Down
4 changes: 4 additions & 0 deletions pipelines/EmpiricalReads2Map/EmpiricalReads2Map.changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.4.3

* Update example for pair-end reads inputs

# 1.4.2

* more flexibility to choose the probability to be used in the HMM:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.4.2

* Update example for pair-end reads inputs

# 1.4.1

* Use BCFtools norm to left-align indel marker positions identified by GATK, STACKs and freebayes
Expand Down
2 changes: 1 addition & 1 deletion tasks/BWA.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ task RunBwaAlignment {
fi

bwa_header="@RG\tID:${sampleName_list[$index]}.${lib_list[$index]}\tLB:lib-${lib_list[$index]}\tPL:illumina\tSM:${sampleName_list[$index]}\tPU:FLOWCELL1.LANE1.${lib_list[$index]}"
/usr/gitc/./bwa mem -t ~{max_cores} -R "${bwa_header}" ~{references.ref_fasta} "$reads" | \
/usr/gitc/./bwa mem -t ~{max_cores} -R "${bwa_header}" ~{references.ref_fasta} $reads | \
java -jar /usr/gitc/picard.jar SortSam \
I=/dev/stdin \
O="${sampleName_list[$index]}.${lib_list[$index]}.sorted.bam" \
Expand Down
6 changes: 3 additions & 3 deletions tasks/gatk.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ task HaplotypeCaller {
}

Int disk_size = ceil((size(bams, "GiB") + 30) + size(reference_fasta, "GiB")) + 20
Int memory_max = ceil(max_ram/chunk_size - 1000)
Int memory_min = ceil((max_ram/chunk_size)/5)
Int memory_max = ceil(max_ram/chunk_size - memory_min)
Int memory_size = max_ram
Int max_cores = ceil(chunk_size * 4 + 2)

Expand Down Expand Up @@ -81,8 +81,8 @@ task ImportGVCFs {
}

Int disk_size = ceil(size(vcfs, "GiB") * 1.5 + size(reference_fasta, "GiB") * 1.5)
Int memory_max = ceil(max_ram - 1000)
Int memory_min = ceil(max_ram/3.85)
Int memory_max = ceil(max_ram - memory_min)
Int memory_size = max_ram

command <<<
Expand Down Expand Up @@ -139,8 +139,8 @@ task GenotypeGVCFs {
}

Int disk_size = ceil(size(reference_fasta, "GiB") * 1.5 + size(workspace_tar, "GiB") * 1.5)
Int memory_max = ceil(max_ram - 1000)
Int memory_min = ceil(max_ram/3.85)
Int memory_max = ceil(max_ram - memory_min)
Int memory_size = max_ram

command <<<
Expand Down
2 changes: 1 addition & 1 deletion tasks/stacks.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ task RefMap {
}
Int disk_size = ceil(size(bams, "GiB") * 2)
Int memory_size = 4000 + ceil(size(bams, "MiB") * 2)
Int memory_size = 3000 + ceil(size(bams, "MiB") * 2)
command <<<
Expand Down

0 comments on commit a202c7c

Please sign in to comment.