-
Notifications
You must be signed in to change notification settings - Fork 29
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
flexbar: Too many arguments! #44
Comments
On 22/06/2023 13:17, lulumagic7 wrote:
Hey, here is my script:
**module load flexbar/3.5.0
DATA="/data/epifluidlab/lulu/hek293t/data"
mySample="Dmut2 Dmut3 Dyth1 Dyth2 Dyth3"
for s in $mySample
do
flexbar -r $DATA/${s}_1.fq.gz -p $DATA/${s}_2.fq.gz -aa Nextera
–zip-output GZ –threads 16 -qf i1.8 -t
/data/epifluidlab/lulu/hek293t/data/trim/${s}
done**
I got the error:
flexbar: Too many arguments!
Hi, Lu.
Your long option "-threads" is incorrect: It should be "--threads"; same problem with your "-zip-output" option should be "--zip-output":
flexbar -r $DATA/${s}_1.fq.gz -p $DATA/${s}_2.fq.gz -aa Nextera
--zip-output GZ --threads 16 -qf i1.8 -t
/data/epifluidlab/lulu/hek293t/data/trim/${s}
HTH,
Tony.
…--
Minke Informatics Limited, Registered in Scotland - Company No. SC419028
Registered Office: 3 Donview, Bridge of Alford, AB33 8QJ, Scotland (UK)
tel. +44(0)19755 63548 http://minke-informatics.co.uk
mob. +44(0)7985 078324 ***@***.***
|
Thanks so much!
From: Tony Travis ***@***.***
Sent: Friday, June 23, 2023 11:51 AM
To: seqan/flexbar ***@***.***>
Cc: Lu, LU ***@***.***>; Author ***@***.***>
Subject: Re: [seqan/flexbar] flexbar: Too many arguments! (Issue #44)
This email originated from an EXTERNAL sender to CCHMC. Proceed with caution when replying, opening attachments, or clicking links in this message.
On 22/06/2023 13:17, lulumagic7 wrote:
Hey, here is my script:
**module load flexbar/3.5.0
DATA="/data/epifluidlab/lulu/hek293t/data"
mySample="Dmut2 Dmut3 Dyth1 Dyth2 Dyth3"
for s in $mySample
do
flexbar -r $DATA/${s}_1.fq.gz -p $DATA/${s}_2.fq.gz -aa Nextera
–zip-output GZ –threads 16 -qf i1.8 -t
/data/epifluidlab/lulu/hek293t/data/trim/${s}
done**
I got the error:
flexbar: Too many arguments!
Hi, Lu.
Your long option "-threads" is incorrect: It should be "--threads":
flexbar -r $DATA/${s}_1.fq.gz -p $DATA/${s}_2.fq.gz -aa Nextera
--zip-output GZ --threads 16 -qf i1.8 -t
/data/epifluidlab/lulu/hek293t/data/trim/${s}
HTH,
Tony.
…--
Minke Informatics Limited, Registered in Scotland - Company No. SC419028
Registered Office: 3 Donview, Bridge of Alford, AB33 8QJ, Scotland (UK)
tel. +44(0)19755 63548 http://minke-informatics.co.uk
mob. +44(0)7985 078324 ***@***.***<mailto:***@***.***>
—
Reply to this email directly, view it on GitHub<#44 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/A3VHI3YCBNGYBYBYJHESQLLXMW3PPANCNFSM6AAAAAAZQDYICI>.
You are receiving this because you authored the thread.Message ID: ***@***.******@***.***>>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, here is my script:
**module load flexbar/3.5.0
DATA="/data/epifluidlab/lulu/hek293t/data"
mySample="Dmut2 Dmut3 Dyth1 Dyth2 Dyth3"
for s in $mySample
do
flexbar -r$DATA/$ {s}_1.fq.gz -p $DATA/$ {s}_2.fq.gz -aa Nextera –zip-output GZ –threads 16 -qf i1.8 -t /data/epifluidlab/lulu/hek293t/data/trim/${s}
done**
I got the error:
flexbar: Too many arguments!
How could I fix it?
Thanks so much!
Best,
Lu
The text was updated successfully, but these errors were encountered: