WIP: added fastQC code snippet (.pl and .sh scripts) #4
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "p287376/system_genetics:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Code to perform fastQC on paired-end sequencing data.
@ -0,0 +1,23 @@
#!/usr/bin/perl -w
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);
This is the main command, the only thing you need ;-) (As a bash command. This is a system call from PERL)
My commit already had fastqc in there. And has been accepted. <3
Pull request closed