We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78a2379 commit 02f801dCopy full SHA for 02f801d
env/common/templates/galaxy/config/tpv/tools.yaml.j2
@@ -782,7 +782,10 @@ tools:
782
ref_file = ref_file.dataset_instances[0]
783
ref_size = float(ref_file.get_size())/1024**3
784
if ref_file.ext != "bwa_mem2_index":
785
- ref_index_mem = ref_size * 30
+ mult = 1.0
786
+ if ref_file.ext.endswith(".gz") or ref_file.ext.endswith(".bz2"):
787
+ mult = 3.3
788
+ ref_index_mem = ref_size * 30 * mult
789
input1 = options["fastq_input"]["fastq_input1"]
790
if hasattr(input1, "first_dataset_instance"):
791
input1 = input1.first_dataset_instance()
0 commit comments