Can blat use more than one core/CPU to speed up the alignment?
I am using BLAT to align two versions of the genome of C. elegans. I can see in the Activity Monitor of my Mac Book Pro High Sierra that blat
is using 100% of a CPU. However, is this programme able to use more than one core / CPU to speed up the alignment?
I cannot find such option in the help page of the tool here.
I installed blat using conda install -c bioconda blat
.
I am using the latest version of blat
, i.e. 36.
alignment sequence-alignment software-usage blat
add a comment |
I am using BLAT to align two versions of the genome of C. elegans. I can see in the Activity Monitor of my Mac Book Pro High Sierra that blat
is using 100% of a CPU. However, is this programme able to use more than one core / CPU to speed up the alignment?
I cannot find such option in the help page of the tool here.
I installed blat using conda install -c bioconda blat
.
I am using the latest version of blat
, i.e. 36.
alignment sequence-alignment software-usage blat
add a comment |
I am using BLAT to align two versions of the genome of C. elegans. I can see in the Activity Monitor of my Mac Book Pro High Sierra that blat
is using 100% of a CPU. However, is this programme able to use more than one core / CPU to speed up the alignment?
I cannot find such option in the help page of the tool here.
I installed blat using conda install -c bioconda blat
.
I am using the latest version of blat
, i.e. 36.
alignment sequence-alignment software-usage blat
I am using BLAT to align two versions of the genome of C. elegans. I can see in the Activity Monitor of my Mac Book Pro High Sierra that blat
is using 100% of a CPU. However, is this programme able to use more than one core / CPU to speed up the alignment?
I cannot find such option in the help page of the tool here.
I installed blat using conda install -c bioconda blat
.
I am using the latest version of blat
, i.e. 36.
alignment sequence-alignment software-usage blat
alignment sequence-alignment software-usage blat
asked yesterday
charlesdarwincharlesdarwin
1,078313
1,078313
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
BLAT can only use one CPU. It is actually not the right tool for full-genome alignment. For "two versions" of the same species, MUMmer and minimap2 are orders of magnitude faster and probably give better alignment.
EDIT (moving comment to answer): OP comments that the purpose of this alignment is for lifting over annotations using the UCSC PSL-based pipeline. So far there are no converters for minimap2's SAM/PAF or MUMmer's delta formats. With the UCSC pipeline, you have to write a converter by yourself. An alternative approach is to use minimap2's liftover. The minimap2 cookbook gives an example:
minimap2 -cx asm5 --cs ecoli_ref.fa ecoli_canu.fa > ecoli_canu.paf
echo -e 'tig00000001t200000t300000' | paftools.js liftover ecoli_canu.paf -
Note that this pipeline is not as mature as UCSC liftOver and is not as scalable.
I need an alignment in PSL format for downstream tools needed for lifting over an annotation. Do you know if I can get an alignment in psl format with nucmer or minimap2?
– charlesdarwin
yesterday
1
@charlesdarwin The eternal theme of bioin-format-ics is format conversion, which is needed here, I am afraid. For simple annotations, you can usepaftools.js liftover
. EDIT: on paftools liftover see here.
– user172818♦
yesterday
1
@charlesdarwin LASTZ tool might also be worth a look for this, although it's quite old now...
– Chris_Rands
22 hours ago
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "676"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbioinformatics.stackexchange.com%2fquestions%2f6751%2fcan-blat-use-more-than-one-core-cpu-to-speed-up-the-alignment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
BLAT can only use one CPU. It is actually not the right tool for full-genome alignment. For "two versions" of the same species, MUMmer and minimap2 are orders of magnitude faster and probably give better alignment.
EDIT (moving comment to answer): OP comments that the purpose of this alignment is for lifting over annotations using the UCSC PSL-based pipeline. So far there are no converters for minimap2's SAM/PAF or MUMmer's delta formats. With the UCSC pipeline, you have to write a converter by yourself. An alternative approach is to use minimap2's liftover. The minimap2 cookbook gives an example:
minimap2 -cx asm5 --cs ecoli_ref.fa ecoli_canu.fa > ecoli_canu.paf
echo -e 'tig00000001t200000t300000' | paftools.js liftover ecoli_canu.paf -
Note that this pipeline is not as mature as UCSC liftOver and is not as scalable.
I need an alignment in PSL format for downstream tools needed for lifting over an annotation. Do you know if I can get an alignment in psl format with nucmer or minimap2?
– charlesdarwin
yesterday
1
@charlesdarwin The eternal theme of bioin-format-ics is format conversion, which is needed here, I am afraid. For simple annotations, you can usepaftools.js liftover
. EDIT: on paftools liftover see here.
– user172818♦
yesterday
1
@charlesdarwin LASTZ tool might also be worth a look for this, although it's quite old now...
– Chris_Rands
22 hours ago
add a comment |
BLAT can only use one CPU. It is actually not the right tool for full-genome alignment. For "two versions" of the same species, MUMmer and minimap2 are orders of magnitude faster and probably give better alignment.
EDIT (moving comment to answer): OP comments that the purpose of this alignment is for lifting over annotations using the UCSC PSL-based pipeline. So far there are no converters for minimap2's SAM/PAF or MUMmer's delta formats. With the UCSC pipeline, you have to write a converter by yourself. An alternative approach is to use minimap2's liftover. The minimap2 cookbook gives an example:
minimap2 -cx asm5 --cs ecoli_ref.fa ecoli_canu.fa > ecoli_canu.paf
echo -e 'tig00000001t200000t300000' | paftools.js liftover ecoli_canu.paf -
Note that this pipeline is not as mature as UCSC liftOver and is not as scalable.
I need an alignment in PSL format for downstream tools needed for lifting over an annotation. Do you know if I can get an alignment in psl format with nucmer or minimap2?
– charlesdarwin
yesterday
1
@charlesdarwin The eternal theme of bioin-format-ics is format conversion, which is needed here, I am afraid. For simple annotations, you can usepaftools.js liftover
. EDIT: on paftools liftover see here.
– user172818♦
yesterday
1
@charlesdarwin LASTZ tool might also be worth a look for this, although it's quite old now...
– Chris_Rands
22 hours ago
add a comment |
BLAT can only use one CPU. It is actually not the right tool for full-genome alignment. For "two versions" of the same species, MUMmer and minimap2 are orders of magnitude faster and probably give better alignment.
EDIT (moving comment to answer): OP comments that the purpose of this alignment is for lifting over annotations using the UCSC PSL-based pipeline. So far there are no converters for minimap2's SAM/PAF or MUMmer's delta formats. With the UCSC pipeline, you have to write a converter by yourself. An alternative approach is to use minimap2's liftover. The minimap2 cookbook gives an example:
minimap2 -cx asm5 --cs ecoli_ref.fa ecoli_canu.fa > ecoli_canu.paf
echo -e 'tig00000001t200000t300000' | paftools.js liftover ecoli_canu.paf -
Note that this pipeline is not as mature as UCSC liftOver and is not as scalable.
BLAT can only use one CPU. It is actually not the right tool for full-genome alignment. For "two versions" of the same species, MUMmer and minimap2 are orders of magnitude faster and probably give better alignment.
EDIT (moving comment to answer): OP comments that the purpose of this alignment is for lifting over annotations using the UCSC PSL-based pipeline. So far there are no converters for minimap2's SAM/PAF or MUMmer's delta formats. With the UCSC pipeline, you have to write a converter by yourself. An alternative approach is to use minimap2's liftover. The minimap2 cookbook gives an example:
minimap2 -cx asm5 --cs ecoli_ref.fa ecoli_canu.fa > ecoli_canu.paf
echo -e 'tig00000001t200000t300000' | paftools.js liftover ecoli_canu.paf -
Note that this pipeline is not as mature as UCSC liftOver and is not as scalable.
edited 13 hours ago
answered yesterday
user172818♦user172818
4,0621424
4,0621424
I need an alignment in PSL format for downstream tools needed for lifting over an annotation. Do you know if I can get an alignment in psl format with nucmer or minimap2?
– charlesdarwin
yesterday
1
@charlesdarwin The eternal theme of bioin-format-ics is format conversion, which is needed here, I am afraid. For simple annotations, you can usepaftools.js liftover
. EDIT: on paftools liftover see here.
– user172818♦
yesterday
1
@charlesdarwin LASTZ tool might also be worth a look for this, although it's quite old now...
– Chris_Rands
22 hours ago
add a comment |
I need an alignment in PSL format for downstream tools needed for lifting over an annotation. Do you know if I can get an alignment in psl format with nucmer or minimap2?
– charlesdarwin
yesterday
1
@charlesdarwin The eternal theme of bioin-format-ics is format conversion, which is needed here, I am afraid. For simple annotations, you can usepaftools.js liftover
. EDIT: on paftools liftover see here.
– user172818♦
yesterday
1
@charlesdarwin LASTZ tool might also be worth a look for this, although it's quite old now...
– Chris_Rands
22 hours ago
I need an alignment in PSL format for downstream tools needed for lifting over an annotation. Do you know if I can get an alignment in psl format with nucmer or minimap2?
– charlesdarwin
yesterday
I need an alignment in PSL format for downstream tools needed for lifting over an annotation. Do you know if I can get an alignment in psl format with nucmer or minimap2?
– charlesdarwin
yesterday
1
1
@charlesdarwin The eternal theme of bioin-format-ics is format conversion, which is needed here, I am afraid. For simple annotations, you can use
paftools.js liftover
. EDIT: on paftools liftover see here.– user172818♦
yesterday
@charlesdarwin The eternal theme of bioin-format-ics is format conversion, which is needed here, I am afraid. For simple annotations, you can use
paftools.js liftover
. EDIT: on paftools liftover see here.– user172818♦
yesterday
1
1
@charlesdarwin LASTZ tool might also be worth a look for this, although it's quite old now...
– Chris_Rands
22 hours ago
@charlesdarwin LASTZ tool might also be worth a look for this, although it's quite old now...
– Chris_Rands
22 hours ago
add a comment |
Thanks for contributing an answer to Bioinformatics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbioinformatics.stackexchange.com%2fquestions%2f6751%2fcan-blat-use-more-than-one-core-cpu-to-speed-up-the-alignment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown