Skip to content

Commit

Permalink
Added compat minimum version
Browse files Browse the repository at this point in the history
Rename of package


Minor test fixes


Rename


Minor change to file header
  • Loading branch information
Ben J. Ward committed Mar 21, 2017
1 parent dfe07e2 commit c875803
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ julia:
notifications:
email: false
after_success:
- julia -e 'cd(Pkg.dir("BiologicalSymbols")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'cd(Pkg.dir("BioSymbols")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'Pkg.add("Documenter")'
- julia -e 'cd(Pkg.dir("BiologicalSymbols")); include(joinpath("docs", "make.jl"))'
- julia -e 'cd(Pkg.dir("BioSymbols")); include(joinpath("docs", "make.jl"))'
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<p align="center"><img src="https://raw.githubusercontent.com/BioJulia/assets/master/branding/packages/BiologicalSymbols/BiologicalSymbols_Logo_600.png" width="70%" alt="BiologicalSymbols.jl" /></p>
<p align="center"><img src="https://raw.githubusercontent.com/BioJulia/assets/master/branding/packages/BioSymbols/BioSymbols_Logo_600.png" width="70%" alt="BioSymbols.jl" /></p>

[![Build Status](https://travis-ci.org/BioJulia/BiologicalSymbols.jl.svg?branch=master)](https://travis-ci.org/BioJulia/BiologicalSymbols.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/q9i9c79h0p33tiqp/branch/master?svg=true)](https://ci.appveyor.com/project/Ward9250/biologicalsymbols-jl/branch/master)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://biojulia.github.io/BiologicalSymbols.jl/stable)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://biojulia.github.io/BiologicalSymbols.jl/latest)
[![Build Status](https://travis-ci.org/BioJulia/BioSymbols.jl.svg?branch=master)](https://travis-ci.org/BioJulia/BioSymbols.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/q9i9c79h0p33tiqp/branch/master?svg=true)](https://ci.appveyor.com/project/Ward9250/BioSymbols-jl/branch/master)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://biojulia.github.io/BioSymbols.jl/stable)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://biojulia.github.io/BioSymbols.jl/latest)

## Description

Expand All @@ -12,7 +12,7 @@ are used for many other packages in the BioJulia software ecosystem.

## Installation
```julia
julia> Pkg.add("BiologicalSymbols")
julia> Pkg.add("BioSymbols")
```

If you are interested in the cutting edge of the development, please check out
Expand Down
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
julia 0.5
Compat
Compat 0.17.0
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "versioninfo();
Pkg.clone(pwd(), \"BiologicalSymbols\"); Pkg.build(\"BiologicalSymbols\")"
Pkg.clone(pwd(), \"BioSymbols\"); Pkg.build(\"BioSymbols\")"

test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"BiologicalSymbols\")"
- C:\projects\julia\bin\julia -e "Pkg.test(\"BioSymbols\")"
6 changes: 3 additions & 3 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Project information
site_name: BiologicalSymbols.jl
site_name: BioSymbols.jl
site_description: Bioloigcal symbol types for Julia
site_author: The BioJulia Organisation
site_url: https://biojulia.github.io/BiologicalSymbols.jl/
site_url: https://biojulia.github.io/BioSymbols.jl/

# Repository
repo_url: https://github.com/BioJulia/BiologicalSymbols.jl
repo_url: https://github.com/BioJulia/BioSymbols.jl

# Copyright
copyright: Copyright (c) 2017 The BioJulia Organisation
Expand Down
File renamed without changes
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BiologicalSymbols.jl Documentation
# BioSymbols.jl Documentation

BiologicalSymbols.jl provides an abstract type and two concrete primitive types
BioSymbols.jl provides an abstract type and two concrete primitive types
for julia which act as values representing nucleic acids and amino acids for
bioinformatics and computational biology scripts and packages.

Expand Down
14 changes: 7 additions & 7 deletions docs/src/types.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
```@meta
CurrentModule = BiologicalSymbols
CurrentModule = BioSymbols
DocTestSetup = quote
using BiologicalSymbols
using BioSymbols
end
```

# NucleicAcids

## Type definitions

BiologicalSymbols provides two types of NucleicAcid:
BioSymbols provides two types of NucleicAcid:

| Type | Meaning |
| :-------------- | :------------- |
| `DNA` | DNA nucleotide |
| `RNA` | RNA nucleotide |

The set of nucleotide symbols in BiologicalSymbols.jl covers the IUPAC nucleotides
The set of nucleotide symbols in BioSymbols.jl covers the IUPAC nucleotides
as well as a GAP (-) symbol.

| Symbol | Constant | Meaning |
Expand Down Expand Up @@ -56,10 +56,10 @@ julia> DNA_Gap
DNA_Gap
julia> typeof(DNA_A)
BiologicalSymbols.DNA
BioSymbols.DNA
julia> typeof(RNA_A)
BiologicalSymbols.RNA
BioSymbols.RNA
```

Expand Down Expand Up @@ -133,7 +133,7 @@ julia> AA_Term
AA_Term
julia> typeof(AA_A)
BiologicalSymbols.AminoAcid
BioSymbols.AminoAcid
```

Expand Down
8 changes: 4 additions & 4 deletions src/BiologicalSymbols.jl → src/BioSymbols.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# NucleicAcids
# ============
# BioSymbols.jl
# =============
#
# DNA and RNA nucleotide types.
# Types representing Biological Symbols.
#
# This file is a part of the BioJulia ecosystem.
# License is MIT: https://github.com/BioJulia/NucleicAcids.jl/blob/master/LICENSE.md

__precompile__()

module BiologicalSymbols
module BioSymbols

using Compat

Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Base.Test

using BiologicalSymbols
using BioSymbols

@testset "NucleicAcids" begin
@testset "Conversions" begin
Expand Down

0 comments on commit c875803

Please sign in to comment.