Louis BECQUEY

v1.3 large update

1 -v 1.1 beta, January 2021 1 +v 1.3 beta, January 2021
2 2
3 The first uses of RNAnet by people from outside the development team happened between this December. 3 The first uses of RNAnet by people from outside the development team happened between this December.
4 A few feedback allowed to identify issues and useful information to add. 4 A few feedback allowed to identify issues and useful information to add.
5 5
6 FEATURE CHANGES 6 FEATURE CHANGES
7 - - Sequence alignments of the 3D structures mapped to a family are now provided. 7 + - Sequence alignments of the 3D structures mapped to a family are now provided.
8 - Full alignements with Rfam sequences are not provided, but you can ask us for the files. 8 - Full alignements with Rfam sequences are not provided, but you can ask us for the files.
9 - Two new fields in table 'family': ali_length and ali_filtered_length. 9 - Two new fields in table 'family': ali_length and ali_filtered_length.
10 They are the MSA lengths of the alignment with and without the Rfam sequences. 10 They are the MSA lengths of the alignment with and without the Rfam sequences.
11 + - Gap replacement by consensus (--fill-gaps) has been removed. Now, the gap percentage and consensus are saved
12 + in the align_column table and the datapoints in CSV format, in separate columns.
13 + Consensus is one of ACGUN-, the gap being chosen if >75% of the sequences are gaps at this position.
14 + Otherwise, A/C/G/U is chosen if >50% of the non-gap positions are A/C/G/U. Otherwise, N is the consensus.
11 15
12 TECHNICAL CHANGES 16 TECHNICAL CHANGES
13 - - SQLite connexions are now all in WAL mode by default (previously, only the writers used WAL mode) 17 + - SQLite connexions are now all in WAL mode by default (previously, only the writers used WAL mode, but this is useless)
18 + - Moved to Python3.9 for internal testing.
19 + - Latest version of BioPython is now supported (1.78)
14 20
15 BUG CORRECTIONS 21 BUG CORRECTIONS
16 - When an alignment file is updated in a newer run of RNANet, all the re_mappings are now re-computed 22 - When an alignment file is updated in a newer run of RNANet, all the re_mappings are now re-computed
...@@ -19,8 +25,8 @@ BUG CORRECTIONS ...@@ -19,8 +25,8 @@ BUG CORRECTIONS
19 - Changed the ownership and permissions of files produced by the Docker container. 25 - Changed the ownership and permissions of files produced by the Docker container.
20 They were previously owned by root and the user could not get access to them. 26 They were previously owned by root and the user could not get access to them.
21 - Modified nucleotides were not always correctly transformed to N in the alignments (and nucleotide.nt_align_code fields). 27 - Modified nucleotides were not always correctly transformed to N in the alignments (and nucleotide.nt_align_code fields).
22 - Now, the alignments and nt_align_code only contain "ACGUN-" chars. 28 + Now, the alignments and nt_align_code (and consensus) only contain "ACGUN-" chars.
23 - Now, 'N' means 'other', while '-' means 'nothing'. 29 + Now, 'N' means 'other', while '-' means 'nothing' or 'unknown'.
24 30
25 COMING SOON 31 COMING SOON
26 - Automated annotation of detected Recurrent Interaction Networks (RINs), see http://carnaval.lri.fr/ . 32 - Automated annotation of detected Recurrent Interaction Networks (RINs), see http://carnaval.lri.fr/ .
......
...@@ -14,7 +14,7 @@ RUN apk update && apk add --no-cache \ ...@@ -14,7 +14,7 @@ RUN apk update && apk add --no-cache \
14 py3-matplotlib py3-requests py3-scipy py3-setproctitle py3-sqlalchemy py3-tqdm \ 14 py3-matplotlib py3-requests py3-scipy py3-setproctitle py3-sqlalchemy py3-tqdm \
15 sqlite \ 15 sqlite \
16 \ 16 \
17 - && python3 -m pip install biopython==1.76 pandas psutil pymysql && \ 17 + && python3 -m pip install biopython pandas psutil pymysql && \
18 \ 18 \
19 wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \ 19 wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \
20 wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.32-r0/glibc-2.32-r0.apk && \ 20 wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.32-r0/glibc-2.32-r0.apk && \
......
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.