WIP: added general files descriptions #7
No reviewers
Labels
No Label
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: GRIAC/system_genetics#7
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?
Did you accidently push your personal code to the wrong repo, or is it on purpose?
Requires major revision.
@ -0,0 +3,4 @@
# this script was made with consideration for UMI-deduplicating.
# this is because there are three .fastq files for each sample.
# the provider states the info about which file contains which info,
What do you mean with provider?
@ -0,0 +13,4 @@
my $file3 =~ s/\_R3\./_R2./;
die "file1==file2" if $file1 eq $file2;
my $sample = $file1;
$sample =~ s/\_R1\.fastq\.gz$//;
Is this case sensitive?
@ -0,0 +1,27 @@
#!/bin/bash
#SBATCH --job-name=FastQC.for.alveolar_type_2
Remove all the slurm comments.
@ -0,0 +11,4 @@
module purge
module load Perl/5.26.2-foss-2015b-bare
module load BioPerl/1.6.924-foss-2015b-Perl-5.22.0
Do you really need BioPerl as well?
@ -0,0 +22,4 @@
perl scripts/00_fastqc.pl
mkdir rene_FastQC.results
find . -maxdepth 1 -type d -iname "*_R[123]" -exec mv {} ./rene_FastQC.results/ \;
Remove anything that refers to your project dir/ you as a user in specific, and keep it general.
@ -0,0 +23,4 @@
mkdir rene_FastQC.results
find . -maxdepth 1 -type d -iname "*_R[123]" -exec mv {} ./rene_FastQC.results/ \;
#find . -maxdepth 1 -type f -iname "*.htm*" -exec mv {} ./FastQC.results/ \;
Remove comments that are not necessary, or add comments what it can be used for.
Checkout
From your project repository, check out a new branch and test the changes.