comparison jbrowse2/jbrowse2.xml @ 10:0db895a99532 draft default tip

Uploaded
author fubar
date Fri, 05 Jan 2024 22:26:16 +0000
parents 6a41f87b5d7f
children
comparison
equal deleted inserted replaced
9:6a41f87b5d7f 10:0db895a99532
12 <command detect_errors="aggressive"><![CDATA[ 12 <command detect_errors="aggressive"><![CDATA[
13 mkdir -p '$output.files_path' && 13 mkdir -p '$output.files_path' &&
14 ## Copy the XML file into the directory, mostly for debugging 14 ## Copy the XML file into the directory, mostly for debugging
15 ## but nice if users want to reproduce locally 15 ## but nice if users want to reproduce locally
16 cp '$trackxml' '$output.files_path/galaxy.xml' && 16 cp '$trackxml' '$output.files_path/galaxy.xml' &&
17 17 export JBROWSE_SOURCE_DIR=\$(dirname \$(which jbrowse)) &&
18 export JBROWSE_SOURCE_DIR=\$(dirname \$(which jbrowse))/../opt/jbrowse2 &&
19
20 ## Once that's done, we run the python script to handle the real work 18 ## Once that's done, we run the python script to handle the real work
21 python '$__tool_directory__/jbrowse2.py' 19 python '$__tool_directory__/jbrowse2.py'
22
23 --jbrowse \${JBROWSE_SOURCE_DIR} 20 --jbrowse \${JBROWSE_SOURCE_DIR}
24
25 --outdir '$output.files_path' 21 --outdir '$output.files_path'
26 '$trackxml' && 22 --xml '$trackxml' &&
27 23
28 cp '$output.files_path/index.html' '$output' 24 cp '$output.files_path/index.html' '$output'
29 25
30 ## Ugly testing hack since I cannot get <extra_files> to test the files I want to test. Hmph. 26 ## Ugly testing hack since I cannot get <extra_files> to test the files I want to test. Hmph.
31 #if str($uglyTestingHack) == "enabled": 27 #if str($uglyTestingHack) == "enabled":