Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Command usage . #1120

Open
dvirdi01 opened this issue Oct 12, 2023 · 0 comments
Open

Command usage . #1120

dvirdi01 opened this issue Oct 12, 2023 · 0 comments

Comments

@dvirdi01
Copy link

dvirdi01 commented Oct 12, 2023

I have bunch of Oxford long-read fastq files that I need to convert to sorted bam files and later assembly using stringtie. I ran the following command for conversion from fastq files to bam using snakemake:

    minimap2 -t {threads} -a -x map-ont {input.genome} {input.fastq}  | \
    samtools sort -o {output} -@ {threads} - \

Since I did not use the ax-splice option, I wantes to confirm that the files it output were raw long-read sorted files and not alternatively alignment files? It also said to use presets before any other option. I had the threads parameter first so did it produce the wrong output files?

Also, if I want to do a aplice analysis on my files using stringtie, I would be suing this command to convert my fastq files to bam files right?

minimap2 -a -x splice map-ont {input.genome}  {input.fastq} -t {threads}  | \
samtools sort -o {output} -@ {threads} - \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant