Skip to content

Commit 4d9573e

Browse files
committed
2020
1 parent a50e51a commit 4d9573e

10 files changed

+33
-24
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.fna.amb
2+
*.fna.ann
3+
*.fna.bwt
4+
*.fna.fai
5+
*.fna.pac
6+
*.fna.sa

README.md

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -26,32 +26,15 @@ See the [Wiki](https://github.com/telatin/learn_bash/wiki) in this repository.
2626

2727

2828

29-
### 📁 [misc](https://github.com/telatin/learn_bash/tree/master/misc) 12M
30-
31-
This is an extra subdirectory, it contains its own README file for details
32-
33-
- [README.md](https://github.com/telatin/learn_bash/blob/master/misc/README.md)
34-
- 📁 [ecoli](https://github.com/telatin/learn_bash/blob/master/misc/ecoli)
35-
- 📁 [genbank](https://github.com/telatin/learn_bash/blob/master/misc/genbank)
36-
- 📁 [test](https://github.com/telatin/learn_bash/blob/master/misc/test)
37-
38-
39-
### 📁 [archives](https://github.com/telatin/learn_bash/tree/master/archives) 16K
29+
### 📁 [archives](https://github.com/telatin/learn_bash/tree/master/archives) 20K
4030

4131
Archives to test decompression tools
4232

4333
- [archive.tar.gz](https://github.com/telatin/learn_bash/blob/master/archives/archive.tar.gz)
4434
- [archive.zip](https://github.com/telatin/learn_bash/blob/master/archives/archive.zip)
4535

4636

47-
### 📁 [scripts](https://github.com/telatin/learn_bash/tree/master/scripts) 24K
48-
- [N50.pl](https://github.com/telatin/learn_bash/blob/master/scripts/N50.pl)
49-
- [install_denovo.sh](https://github.com/telatin/learn_bash/blob/master/scripts/install_denovo.sh)
50-
- [linkweb.sh](https://github.com/telatin/learn_bash/blob/master/scripts/linkweb.sh)
51-
- [weather.pl](https://github.com/telatin/learn_bash/blob/master/scripts/weather.pl)
52-
53-
54-
### 📁 [phage](https://github.com/telatin/learn_bash/tree/master/phage) 2.3M
37+
### 📁 [phage](https://github.com/telatin/learn_bash/tree/master/phage) 4.6M
5538

5639
A set of files to test parsing of bioinformatics format, mostly related to PhiX phage.
5740

@@ -65,26 +48,46 @@ A set of files to test parsing of bioinformatics format, mostly related to PhiX
6548
- [vir_cds_from_genomic.fna](https://github.com/telatin/learn_bash/blob/master/phage/vir_cds_from_genomic.fna)
6649
- [vir_feature_count.txt](https://github.com/telatin/learn_bash/blob/master/phage/vir_feature_count.txt)
6750
- [vir_feature_table.txt](https://github.com/telatin/learn_bash/blob/master/phage/vir_feature_table.txt)
51+
- [vir_genomic.fna.amb](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.fna.amb)
52+
- [vir_genomic.fna.ann](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.fna.ann)
53+
- [vir_genomic.fna.bwt](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.fna.bwt)
54+
- [vir_genomic.fna.fai](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.fna.fai)
55+
- [vir_genomic.fna.pac](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.fna.pac)
56+
- [vir_genomic.fna.sa](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.fna.sa)
6857
- [vir_genomic.fna](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.fna)
6958
- [vir_genomic.gbff](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.gbff)
7059
- [vir_genomic.gff](https://github.com/telatin/learn_bash/blob/master/phage/vir_genomic.gff)
7160
- [vir_protein.faa](https://github.com/telatin/learn_bash/blob/master/phage/vir_protein.faa)
7261
- [vir_protein.gpff](https://github.com/telatin/learn_bash/blob/master/phage/vir_protein.gpff)
73-
- [vir_reads1.fq](https://github.com/telatin/learn_bash/blob/master/phage/vir_reads1.fq)
74-
- [vir_reads2.fq](https://github.com/telatin/learn_bash/blob/master/phage/vir_reads2.fq)
7562
- [vir_rna_from_genomic.fna](https://github.com/telatin/learn_bash/blob/master/phage/vir_rna_from_genomic.fna)
7663
- [vir_translated_cds.faa](https://github.com/telatin/learn_bash/blob/master/phage/vir_translated_cds.faa)
64+
- 📁 [reads](https://github.com/telatin/learn_bash/blob/master/phage/reads)
65+
66+
67+
### 📁 [misc](https://github.com/telatin/learn_bash/tree/master/misc) 11M
68+
69+
This is an extra subdirectory, it contains its own README file for details
70+
71+
- [README.md](https://github.com/telatin/learn_bash/blob/master/misc/README.md)
72+
- 📁 [ecoli](https://github.com/telatin/learn_bash/blob/master/misc/ecoli)
73+
- 📁 [genbank](https://github.com/telatin/learn_bash/blob/master/misc/genbank)
74+
- 📁 [test](https://github.com/telatin/learn_bash/blob/master/misc/test)
75+
76+
77+
### 📁 [scripts](https://github.com/telatin/learn_bash/tree/master/scripts) 28K
78+
- [N50.pl](https://github.com/telatin/learn_bash/blob/master/scripts/N50.pl)
79+
- [install_denovo.sh](https://github.com/telatin/learn_bash/blob/master/scripts/install_denovo.sh)
80+
- [linkweb.sh](https://github.com/telatin/learn_bash/blob/master/scripts/linkweb.sh)
81+
- [weather.pl](https://github.com/telatin/learn_bash/blob/master/scripts/weather.pl)
7782

7883

79-
### 📁 [files](https://github.com/telatin/learn_bash/tree/master/files) 3.5M
84+
### 📁 [files](https://github.com/telatin/learn_bash/tree/master/files) 1.7M
8085

8186
Common file formats, both binary (e.g. PNG image) and text files (e.g. CSV). A PDF document is included to see how `less` can also handle them.
8287

8388
- [Green_Ok_Icon.png](https://github.com/telatin/learn_bash/blob/master/files/Green_Ok_Icon.png)
8489
- [R-package-edgeR.pdf](https://github.com/telatin/learn_bash/blob/master/files/R-package-edgeR.pdf)
8590
- [Sample.pdf](https://github.com/telatin/learn_bash/blob/master/files/Sample.pdf)
86-
- [Sample1_R1.fastq.gz](https://github.com/telatin/learn_bash/blob/master/files/Sample1_R1.fastq.gz)
87-
- [Sample1_R2.fastq.gz](https://github.com/telatin/learn_bash/blob/master/files/Sample1_R2.fastq.gz)
8891
- [cars.csv](https://github.com/telatin/learn_bash/blob/master/files/cars.csv)
8992
- [edgeR.url](https://github.com/telatin/learn_bash/blob/master/files/edgeR.url)
9093
- [introduction.txt](https://github.com/telatin/learn_bash/blob/master/files/introduction.txt)

files/Sample1_R1.fastq.gz

-981 KB
Binary file not shown.

files/Sample1_R2.fastq.gz

-978 KB
Binary file not shown.

phage/reads/sample1_R1.fastq.gz

-357 KB
Binary file not shown.

phage/reads/sample1_R2.fastq.gz

-437 KB
Binary file not shown.

phage/reads/sample3_R1.fastq.gz

515 KB
Binary file not shown.

phage/reads/sample3_R2.fastq.gz

638 KB
Binary file not shown.

phage/reads/vir_reads1.fq.gz

-158 KB
Binary file not shown.

phage/reads/vir_reads2.fq.gz

-201 KB
Binary file not shown.

0 commit comments

Comments
 (0)