-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi Matthias, I can see what you are trying to do, but setting
This is the same as running the |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hi Matthias, I can see what you are trying to do, but setting
This is the same as running the |
Beta Was this translation helpful? Give feedback.
Hi Matthias,
I can see what you are trying to do, but setting
ylim 0
does not turn off reserving space for alignments - I think this is a bug, and it should work the way you are trying. However, there is another way to get the desired effect, simply use the--command
option available on the CLI, this will apply a command right before any drawing commands are issued. For example:gw hg38 -b ./DB53.bam -b ./DB53.bam -b ./DB53.bam --command "alignments" --command "load ideogram hg19" -n -r chr1:1-20000 > test.png
This is the same as running the
alignments
command followed byload ideogram hg19
(the alignments command toggles alignments on/off, as they are on by default, this will toggle th…