WIP: added general files descriptions #7

Draft
R. Bults wants to merge 2 commits from p287376/system_genetics:master into master
Owner
No description provided.
R. Bults added 2 commits 2021-02-22 15:22:10 +01:00
H.C. Donker reviewed 2021-02-22 16:07:10 +01:00
H.C. Donker left a comment
Owner

Did you accidently push your personal code to the wrong repo, or is it on purpose?

Did you accidently push your personal code to the wrong repo, or is it on purpose?
H.C. Donker requested changes 2021-02-23 12:21:30 +01:00
H.C. Donker left a comment
Owner

Requires major revision.

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,
Owner

What do you mean with provider?

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$//;
Owner

Is this case sensitive?

Is this case sensitive?
@ -0,0 +1,27 @@
#!/bin/bash
#SBATCH --job-name=FastQC.for.alveolar_type_2
Owner

Remove all the slurm comments.

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
Owner

Do you really need BioPerl as well?

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/ \;
Owner

Remove anything that refers to your project dir/ you as a user in specific, and keep it general.

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/ \;
Owner

Remove comments that are not necessary, or add comments what it can be used for.

Remove comments that are not necessary, or add comments what it can be used for.
This pull request is marked as a work in progress.
This branch is out-of-date with the base branch
You can also view command line instructions.

Step 1:

From your project repository, check out a new branch and test the changes.
git checkout -b p287376-master master
git pull master

Step 2:

Merge the changes and update on Gitea.
git checkout master
git merge --no-ff p287376-master
git push origin master
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#7
No description provided.