├── README.md ├── data ├── awk_example.txt ├── awk_out.tsv ├── bdstat.txt ├── bed │ ├── 1 │ ├── .test.swp │ ├── BRD4_peaks.bed │ ├── BRD4_peaks_chr8.bed │ ├── ETS1_peaks.bed │ ├── GABPA_peaks.bed │ ├── MED1_peaks.bed │ ├── Notch_w4h_peaks.bed │ ├── P300_peaks.bed │ ├── RBPJ_w4h_peaks.bed │ ├── RUNX1_peaks.bed │ ├── myfile.txt │ ├── new_link │ │ ├── BRD4_peaks.bed │ │ └── new_brd4.bed │ ├── test │ └── wget ├── cat_bdstat_uniq.txt ├── example_paste1.txt ├── example_paste2.txt ├── example_uniq.txt ├── join_1.txt ├── join_2.txt ├── join_3.txt └── sed_example.txt ├── files ├── Lec-03.md ├── intro.png ├── logo.png ├── slides.pptx └── ~$slides.pptx └── scripts ├── Lec-01.sh ├── Lec-02.sh ├── Lec-03.sh ├── Lec-04.sh ├── Lec-05.sh ├── Lec-06.sh ├── Lec-07.sh ├── Lec-08.sh ├── Lec-09.sh ├── Lec-10.sh ├── Lec-11.sh ├── Lec-12.sh ├── Lec-13.sh ├── Lec-14.sh ├── Lec-15.sh ├── Lec-16.sh ├── Lec-17.sh ├── Lec-18.sh ├── Lec-19.sh └── Lec-20.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /data/awk_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/awk_example.txt -------------------------------------------------------------------------------- /data/awk_out.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/awk_out.tsv -------------------------------------------------------------------------------- /data/bdstat.txt: -------------------------------------------------------------------------------- 1 | Dhaka 3 2 | Sylhet 11 3 | Khulna 1 4 | Rajshahi 0 5 | Ctg 9 -------------------------------------------------------------------------------- /data/bed/.test.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/.test.swp -------------------------------------------------------------------------------- /data/bed/1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/bed/BRD4_peaks.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/BRD4_peaks.bed -------------------------------------------------------------------------------- /data/bed/BRD4_peaks_chr8.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/BRD4_peaks_chr8.bed -------------------------------------------------------------------------------- /data/bed/ETS1_peaks.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/ETS1_peaks.bed -------------------------------------------------------------------------------- /data/bed/GABPA_peaks.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/GABPA_peaks.bed -------------------------------------------------------------------------------- /data/bed/MED1_peaks.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/MED1_peaks.bed -------------------------------------------------------------------------------- /data/bed/Notch_w4h_peaks.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/Notch_w4h_peaks.bed -------------------------------------------------------------------------------- /data/bed/P300_peaks.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/P300_peaks.bed -------------------------------------------------------------------------------- /data/bed/RBPJ_w4h_peaks.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/RBPJ_w4h_peaks.bed -------------------------------------------------------------------------------- /data/bed/RUNX1_peaks.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/RUNX1_peaks.bed -------------------------------------------------------------------------------- /data/bed/myfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/bed/new_link/BRD4_peaks.bed: -------------------------------------------------------------------------------- 1 | /Users/rashedulislam/Documents/Linux-for-Genomics-Bangla-Tutorial/data/bed/BRD4_peaks.bed -------------------------------------------------------------------------------- /data/bed/new_link/new_brd4.bed: -------------------------------------------------------------------------------- 1 | /Users/rashedulislam/Documents/Linux-for-Genomics-Bangla-Tutorial/data/bed/BRD4_peaks.bed -------------------------------------------------------------------------------- /data/bed/test: -------------------------------------------------------------------------------- 1 | hi 2 | how 3 | are 4 | you in bangladesh 5 | -------------------------------------------------------------------------------- /data/bed/wget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/bed/wget -------------------------------------------------------------------------------- /data/cat_bdstat_uniq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/cat_bdstat_uniq.txt -------------------------------------------------------------------------------- /data/example_paste1.txt: -------------------------------------------------------------------------------- 1 | a 1 2 | b 9 3 | d 2 4 | x 3 5 | c 10 6 | -------------------------------------------------------------------------------- /data/example_paste2.txt: -------------------------------------------------------------------------------- 1 | B 2 | X 3 | T 4 | U 5 | E 6 | G 7 | -------------------------------------------------------------------------------- /data/example_uniq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/example_uniq.txt -------------------------------------------------------------------------------- /data/join_1.txt: -------------------------------------------------------------------------------- 1 | a 1 2 | b 2 3 | c 3 4 | -------------------------------------------------------------------------------- /data/join_2.txt: -------------------------------------------------------------------------------- 1 | a 1 2 | b 2 3 | c 3 4 | d 5 5 | e 3 6 | -------------------------------------------------------------------------------- /data/join_3.txt: -------------------------------------------------------------------------------- 1 | p 10 2 | a 1 3 | b 2 4 | c 3 5 | -------------------------------------------------------------------------------- /data/sed_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/data/sed_example.txt -------------------------------------------------------------------------------- /files/Lec-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/files/Lec-03.md -------------------------------------------------------------------------------- /files/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/files/intro.png -------------------------------------------------------------------------------- /files/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/files/logo.png -------------------------------------------------------------------------------- /files/slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/files/slides.pptx -------------------------------------------------------------------------------- /files/~$slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/files/~$slides.pptx -------------------------------------------------------------------------------- /scripts/Lec-01.sh: -------------------------------------------------------------------------------- 1 | echo "hello" 2 | 3 | -------------------------------------------------------------------------------- /scripts/Lec-02.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-03.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-04.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-05.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-06.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-07.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-08.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-09.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-10.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-11.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/scripts/Lec-12.sh -------------------------------------------------------------------------------- /scripts/Lec-13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/scripts/Lec-13.sh -------------------------------------------------------------------------------- /scripts/Lec-14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rashedul/Linux-for-Genomics-Bangla-Tutorial/HEAD/scripts/Lec-14.sh -------------------------------------------------------------------------------- /scripts/Lec-15.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-16.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-17.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-18.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-19.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Lec-20.sh: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------