Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
ngs_tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bioinfo
ngs_tools
Commits
e880df2f
Commit
e880df2f
authored
10 years ago
by
Holger Brandl
Browse files
Options
Downloads
Patches
Plain Diff
added new tech-rep-renaming
parent
e1f1ee07
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dge_workflow/lsf_rna_seq.sh
+3
-0
3 additions, 0 deletions
dge_workflow/lsf_rna_seq.sh
dge_workflow/todo.txt
+4
-0
4 additions, 0 deletions
dge_workflow/todo.txt
misc/snippets.sh
+30
-0
30 additions, 0 deletions
misc/snippets.sh
with
37 additions
and
0 deletions
dge_workflow/lsf_rna_seq.sh
+
3
−
0
View file @
e880df2f
...
...
@@ -191,7 +191,10 @@ cp -r . $tmpDbDir
## todo remove this hack
genome
=
$(
echo
$gtfFile
|
cut
-f7
-d
'/'
)
;
echo
"genome is
$genome
"
## make sure to use temp-r to avoid file locking problems
R_LIBS
=
/tmp/r_index
echo
'
require(cummeRbund)
dbDir=commandArgs(T)[1]
...
...
This diff is collapsed.
Click to expand it.
dge_workflow/todo.txt
+
4
−
0
View file @
e880df2f
- cuffdbs change dramatically in size if gtf is provided when building them, but what impact does it have on the results
- Also try to remove RNA PCR Primer enrichment. Currently we just remove index and universal adapter
1) evaluate if trimmoatic is the better trimmer (with respect to cutadapt)
- also consider to use contamination list from fastqc for trimming (see https://www.biostars.org/p/15753/)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
misc/snippets.sh
0 → 100755
+
30
−
0
View file @
e880df2f
#########################################################################################################################
#### Trimmomatic
zcat
$fastqFile
|
head
-n
400000
>
test.fastq
gzip
test.fastq
export
TRIMMOMATIC_HOME
=
/projects/bioinfo/holger/bin/Trimmomatic-0.32
# do the filtering
mcdir
$baseDir
/trimmed
for
fastqFile
in
$baseDir
/treps_pooled/
*
fastq.gz
;
do
# DEBUG fastqFile=/projects/bioinfo/holger/projects/helin/dog/treps_pooled/dog_big_cyst_rep1.fastq.gz
# DEBUG fastqFile=test.fastq.gz
caFastq
=
$(
basename
$fastqFile
.fastq.gz
)
_tm.fastq.gz
echo
"cutadapting
$caFastq
into
$caFastq
"
cmd
=
"java -Xmx2g -jar
$TRIMMOMATIC_HOME
/trimmomatic-0.32.jar SE -threads 1 -phred33
$fastqFile
$caFastq
ILLUMINACLIP:
$TRIMMOMATIC_HOME
/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 MINLEN:36"
eval
$cmd
mysub
"
$project__ca__$caFastq
"
"cutadapt -m 20 -q 25 -o
$caFastq
$fastqFile
>
$caFastq
.ca.log"
-q
long | joblist .tmjobs
done
wait4jobs .tmjobs
dge_fastqc
-o
$baseDir
/fastqc_tm
$(
ls
$baseDir
/trimmed/
*
fastq.gz
)
mailme
"trimmomatic done"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment