Skip to content

Commit

Permalink
replace_with_tab
Browse files Browse the repository at this point in the history
  • Loading branch information
gongyixiao committed Sep 19, 2016
1 parent e519569 commit f13a3a4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
13 changes: 13 additions & 0 deletions code/replace_with_tab
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/tcsh -f

##
## USAGE: replace_tab STRING
##

if ($#argv != 1) then
usage $0
exit
endif

sed "s/$1/ /"

3 changes: 2 additions & 1 deletion inputs/params.bash
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class_code="iusx"
min_length="200"
extend_TSS="1500"
ref_annot_bed=$protein_coding_bed
excluding_region="../referenceFiles/excluding_region.bed"

##################
# 4. whole_assembly
Expand All @@ -45,7 +46,7 @@ CPAT_cutoff="../referenceFiles/CPAT_Reference/Human_cutoff.txt"
##################
# 6. annotate
# <all annotation bed files in double quote>
other_annotations="../referenceFiles/RefSeqRefFlat.bed ../referenceFiles/Homo_sapiens.GRCh37.79.bed"
other_annotations="../referenceFiles/RefSeqRefFlat.bed ../referenceFiles/Homo_sapiens.GRCh37.75.bed"

##################
# 6. summarize + split_table
Expand Down
2 changes: 1 addition & 1 deletion run.bash
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ code/wait_jobs.bash cuffmerge
cd ..

cd identify
code/identify.bash $class_code $min_length $extend_TSS $ref_annot_bed $ref_annot_gtf ../cuffmerge/merged.gtf
code/identify.bash $class_code $min_length $extend_TSS $ref_annot_bed $ref_annot_gtf $excluding_region ../cuffmerge/merged.gtf
cd ..

cd whole_assembly
Expand Down

0 comments on commit f13a3a4

Please sign in to comment.