Skip to content
Snippets Groups Projects
Commit a47088d9 authored by Sebastien Moretti's avatar Sebastien Moretti
Browse files

Add new png

parent 4b48673f
Branches
No related tags found
No related merge requests found
Showing
with 38 additions and 0 deletions
htdocs/epdnew/gif/Arabidopsis_thaliana/AT1G27760_1.png

9.09 KiB

htdocs/epdnew/gif/Arabidopsis_thaliana/AT1G50710_1.png

8.5 KiB

htdocs/epdnew/gif/Arabidopsis_thaliana/AT1G67870_1.png

8 KiB

htdocs/epdnew/gif/Arabidopsis_thaliana/AT2G22960_1.png

8.24 KiB

htdocs/epdnew/gif/Arabidopsis_thaliana/AT4G40030_1.png

9.85 KiB

htdocs/epdnew/gif/Drosophila_melanogaster/Ama_1.png

34.6 KiB

htdocs/epdnew/gif/Homo_sapiens/IBA57-DT_1.png

30.5 KiB

htdocs/epdnew/gif/Saccharomyces_cerevisiae/BSC2_1.png

20 KiB

htdocs/epdnew/gif/Schizosaccharomyces_pombe/SPAC17A2.10c_1.png

8.72 KiB

htdocs/epdnew/gif/Schizosaccharomyces_pombe/SPBC16G5.16_1.png

9.03 KiB

htdocs/epdnew/gif/Schizosaccharomyces_pombe/SPBC36.02c_1.png

8.51 KiB

......@@ -8,3 +8,4 @@
!*/*/*.html
!*/*/*/*.pl
!*/*/*/*/*.pl
!*/*/*/*/*.sh
#!/usr/bin/bash
awk 'BEGIN {FS=OFS="\t"}
NR > 1 && $1 !~ /allSamples/ {print $1}
' /export/data/mga/hg19/fantom5/fantom5.txt |
./make_merge_table.pl > merge_table.txt
mkdir -p sgatmp
# SGA files are written to the "sgatmp" directory
(./merge_files.pl < merge_table.txt; echo "Merging done." | mailx Philipp.Bucher@sib.swiss) > log 2>&1 &
wait
NAMES1=$(ls sgatmp/*.sga | sed -n '1,140p' | sed 's%sgatmp/\(.*\).sga$%\1%')
NAMES2=$(ls sgatmp/*.sga | sed -n '141,280p' | sed 's%sgatmp/\(.*\).sga$%\1%')
NAMES3=$(ls sgatmp/*.sga | sed -n '281,420p' | sed 's%sgatmp/\(.*\).sga$%\1%')
NAMES4=$(ls sgatmp/*.sga | sed -n '421,$p' | sed 's%sgatmp/\(.*\).sga$%\1%')
(for I in $NAMES1; do
echo "Processing $I..."
./make_fantom_bw.sh $I sgatmp bigWig
done) > log1 2>&1 &
(for I in $NAMES4; do
echo "Processing $I..."
./make_fantom_bw.sh $I sgatmp bigWig
done) > log4 2>&1 &
(for I in $NAMES3; do
echo "Processing $I..."
./make_fantom_bw.sh $I sgatmp bigWig
done) > log3 2>&1 &
(for I in $NAMES2; do
echo "Processing $I..."
./make_fantom_bw.sh $I sgatmp bigWig
done) > log2 2>&1 &
wait
ls bigWig/*.bw | grep -v 'all_fantom' | sed 's/.bw$//' | sed 's/.*\///' | ./write_tracks.pl > trackDb.txt
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment