Skip to content

Commit d4825e2

Browse files
Ben Fultonbow
authored andcommitted
Add 2018 abstract
1 parent 5067620 commit d4825e2

File tree

1 file changed

+99
-0
lines changed

1 file changed

+99
-0
lines changed

2018_BOSC/abstract/abstract.tex

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
\documentclass[10pt,oneside]{article}
2+
3+
%%%%%%%%%%%%%
4+
\setlength{\textheight}{8.75in} %Letter is 11in, less 2 for margins, less 0.25 for footer
5+
\setlength{\oddsidemargin}{0.0in} %gets +1inc
6+
\setlength{\evensidemargin}{0.0in} %gets +1inch
7+
\setlength{\textwidth}{6.50in} %Letter is 8.5, less 2 inches for margins
8+
\setlength{\topmargin}{0.5in}
9+
\setlength{\headheight}{0in}
10+
\setlength{\headsep}{0in}
11+
\setlength{\parindent}{0.25in}
12+
%%%%%%%%%%%%
13+
14+
% use letters instead of symbols to accommodate >7 authors
15+
\makeatletter
16+
\let\@fnsymbol\@alph
17+
\makeatother
18+
19+
\usepackage[utf8]{inputenc}
20+
\usepackage[numbers]{natbib}
21+
\usepackage{graphicx}
22+
\usepackage[colorlinks=true,citecolor=black,urlcolor=blue]{hyperref}
23+
24+
\title{%Hack to get the logo on the PDF front page:
25+
\vspace{-1.5in}
26+
\includegraphics[width=0.4\textwidth]{../presentation/figures/biopython.jpg} \\
27+
\vspace{3mm}Biopython Project Update 2018}
28+
\author{
29+
\underline{Ben Fulton}\thanks{Research Technologies, Indiana University, Bloomington, Indiana. Email: \href{mailto:[email protected]}{[email protected]}},
30+
Christian Brueffer\thanks{Department of Clinical Sciences, Lund University, Lund, SE},
31+
Peter Cock\thanks{Information and Computational Sciences, James Hutton Institute, Invergowrie, Dundee, UK},\\
32+
and the Biopython Contributors\thanks{See \href{https://github.com/biopython/biopython/blob/master/CONTRIB.rst}{contributor listing on GitHub}.}}
33+
\date{18\textsuperscript{th} Bioinformatics Open Source Conference (BOSC) 2018, Portland, OR}
34+
35+
\begin{document}
36+
\maketitle
37+
\thispagestyle{empty}
38+
39+
\vspace{-0.2in}
40+
\noindent
41+
Website: \url{http://biopython.org} \\
42+
Repository: \url{https://github.com/biopython/biopython} \\
43+
License: Biopython License Agreement (BSD like, see \url{http://www.biopython.org/DIST/LICENSE}) \\
44+
45+
The Biopython Project is a long-running distributed collaborative effort,
46+
supported by the Open Bioinformatics Foundation, which develops a freely
47+
available Python library for biological computation \cite{AppNote}.
48+
We present here details of the Biopython releases since BOSC 2017,
49+
namely Biopython 1.68, 1.69 and 1.70. Together these had 82 named
50+
contributors including 51 newcomers which reflects our policy of
51+
trying to encourage even small contributions.
52+
53+
Biopython 1.68 (August 2016) was a relatively small release,
54+
with the main new feature being support for RSSB's new binary
55+
Macromolecular Transmission Format (MMTF) for structural data.
56+
57+
Biopython 1.69 (April 2017) represents the start of our re-licensing plan, to transition away
58+
from our liberal but unique \emph{Biopython License Agreement} to the similar
59+
but very widely used \emph{3-Clause BSD License}. We are reviewing the code
60+
base authorship file-by-file, in order to gradually dual license the entire
61+
project.
62+
63+
Major new features include: a new parser for the ExPASy Cellosaurus cell line
64+
database, catalogue and ontology; support for the UCSC Multiple Alignment Format (MAF),
65+
FSA sequencing files, version 4 of the Affymetrix CEL format; updates to the
66+
REBASE February 2017 restriction enzyme list;
67+
Bio.PDB.PDBList now can download more formats including MMTF;
68+
enhanced PyPy support by taking advantage of NumPy and compiling most of the Biopython C code modules.
69+
70+
Biopython 1.70 (July 2017) has internal changes to better support the
71+
now standard \verb|pip| tool for Python package installation.
72+
Major new features include:
73+
support for Mauve's eXtended Multi-FastA (XMFA) file format,
74+
updates to our BLAST XML and MEME parsers, ExPASy support,
75+
and phylogenetic distance matrices.
76+
This release is noteworthy for our new logo (below),
77+
contributed by Patrick Kunzmann. This draws on our original double helix logo
78+
(above), and the blue and yellow colors of the current Python logo:
79+
80+
\begin{center}
81+
\includegraphics[height=2.5cm]{../presentation/figures/biopython_logo_s.png}
82+
\end{center}
83+
84+
All releases fixed miscellaneous bugs, enhanced the test suite,
85+
and continued efforts to follow the PEP8 and PEP257 coding style guidelines
86+
which is now checked automatically with GitHub-integrated continuous integration
87+
testing using \href{https://travis-ci.org/biopython/biopython/builds}{TravisCI}.
88+
We now also use \href{https://ci.appveyor.com/project/biopython/biopython/history}{AppVeyor}
89+
for continuous integration testing under Windows.
90+
Current efforts include improving the unit test coverage, which is easily viewed
91+
online at \href{https://codecov.io/github/biopython/biopython/}{CodeCov.io}.
92+
93+
\begin{thebibliography}{}
94+
95+
\bibitem[Cock {\it et al}., 2009]{AppNote}Cock, P.J.A., Antao, T., Chang, J.T., Chapman, B.A., Cox, C.J., Dalke, A., Friedberg, I., Hamelryck, T., Kauff, F., Wilczynski, B., de Hoon, M.J. (2009) Biopython: freely available Python tools for computational molecular biology and bioinformatics. {\it Bioinformatics} {\bf 25}(11) 1422-3. \href{http://dx.doi.org/10.1093/bioinformatics/btp163}{doi:10.1093/bioinformatics/btp163}
96+
97+
\end{thebibliography}
98+
99+
\end{document}

0 commit comments

Comments
 (0)