WIP: added fastQC code snippet (.pl and .sh scripts) #4

Closed
R. Bults wants to merge 1 commits from p287376/system_genetics:master into master
Owner

Code to perform fastQC on paired-end sequencing data.

Code to perform fastQC on paired-end sequencing data.
R. Bults added 1 commit 2021-02-15 16:08:22 +01:00
R. Bults requested review from J.v.N. 2021-02-15 16:08:45 +01:00
J.v.N. requested changes 2021-02-15 16:12:02 +01:00
@ -0,0 +1,23 @@
#!/usr/bin/perl -w
Owner

Preferably only BASH, and preferably only the main command ;-)

Preferably only BASH, and preferably only the main command ;-)
@ -0,0 +15,4 @@
my $sample = $file1;
$sample =~ s/\_R1\.fastq\.gz$//;
mkdir $sample.'_R1', 0700;
system join(' ', 'fastqc', '-o', $sample.'_R1', $file1);
Owner

This is the main command, the only thing you need ;-) (As a bash command. This is a system call from PERL)

This is the main command, the only thing you need ;-) (As a bash command. This is a system call from PERL)
Owner

My commit already had fastqc in there. And has been accepted. <3

My commit already had fastqc in there. And has been accepted. <3
J.v.N. closed this pull request 2021-02-15 17:07:50 +01:00

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: GRIAC/system_genetics#4
No description provided.